﻿@import url('https://fonts.cdnfonts.com/css/century-gothic');

:root {
    --primary-color: #86D3E6;
    --primary-hover: #6bc2d7;
    --secondary-color: #ADA9A8;
    --text-color: #333333;
    --bg-light: #f8fcfd;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --font-script: 'Autography', cursive;
    --font-main: 'Century Gothic', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

main {
    flex: 1 0 auto;
}

.footer {
    position: static;
    width: 100%;
    line-height: 60px;
    background-color: #fbfbfb;
    border-top: 1px solid var(--secondary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

    nav a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        transition: color 0.2s;
    }

        nav a:hover {
            color: var(--primary-color);
        }

section {
    padding: 60px 0;
}

.hero {
    background-color: var(--bg-light);
    text-align: center;
    padding: 80px 0;
}

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: var(--text-color);
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 30px auto;
    }

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

    .btn-cta:hover {
        background-color: var(--primary-hover);
    }

.about {
    text-align: center;
}

    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

    .about p {
        max-width: 700px;
        margin: 10px auto;
    }

.services {
    background-color: var(--bg-light);
}

    .services h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.8rem;
        color: var(--secondary-color);
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
}

    .card h3 {
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

.how-it-works h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.how-it-works ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.how-it-works li {
    margin-bottom: 15px;
}

.cta-final {
    background-color: var(--bg-light);
    text-align: center;
}

    .cta-final h2 {
        margin-bottom: 10px;
        color: var(--secondary-color);
    }

    .cta-final p {
        margin-bottom: 25px;
    }


@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    section {
        padding: 40px 0;
    }
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(134, 211, 230, 0.3);
}

.logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.hero-logo {
    max-width: 340px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 260px;
    }
}

/* Links globais */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

    a:hover {
        color: var(--text-color);
        text-decoration: underline;
    }

/* Links do menu (Navbar) */
nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

    nav a:hover {
        color: var(--secondary-color);
    }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: #ffffff;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    }