/* Variaveis e Reset */
:root {
    --primary-color: #1F3A60;
    /* Navy Blue Brand */
    --primary-dark: #102035;
    --secondary-color: #e3f2fd;
    /* Light Blue background */
    --accent-color: #25d366;
    /* WhatsApp Green */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Utilitarios */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-dark);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-brand-light {
    background-color: var(--secondary-color);
}

/* Botoes */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.header-logo {
    height: 50px;
    /* Visible in header again */
    width: auto;
    display: block;
}

.hero-logo {
    width: 250px;
    /* Bigger in hero */
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
}

.logo span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

.btn-cta-header {
    background-color: var(--primary-color);
    /* Diferente do verde do whats */
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
    /* Mobile first hidden, show on desktop */
}

@media(min-width: 768px) {
    .btn-cta-header {
        display: inline-block;
    }

    .nav-desktop {
        display: block;
    }
}

@media(max-width: 767px) {
    .nav-desktop {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}



.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Metodo (Steps) */
.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media(min-width: 768px) {
    .steps {
        flex-direction: row;
        justify-content: space-between;
    }
}

.step {
    flex: 1;
    padding: 0 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Sobre */
.container-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media(min-width: 768px) {
    .container-flex {
        flex-direction: row;
    }

    .about-text {
        flex: 1;
        padding-right: 40px;
    }

    .about-placeholder {
        flex: 0 0 350px;
    }
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.02);
}

/* Servicos */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-item h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Modalities */
.modalities {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.badge {
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer / CTA Final */
.cta-final {
    background-color: var(--primary-dark);
    color: var(--white);
}

.cta-final p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-final .section-title {
    color: var(--white);
}

.footer {
    background-color: #222;
    color: #888;
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer-small {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.6;
}

/* Floating Whatsapp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

.stagger-delay-5 {
    transition-delay: 0.5s;
}

.stagger-delay-6 {
    transition-delay: 0.6s;
}

/* Testimonials */
.testimonial-card {
    flex: 0 0 450px;
    padding: 15px;
    align-items: stretch;
}

.testimonial-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media(max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
    }
}

/* Localizacao */
.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media(max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Registro Box */
.registro-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.registro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--primary-color);
}