/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-marinho: #011126;
    --azul-escuro: #07418C;
    --azul-claro: #2493BF;
    --branco: #F2F2F0;
    --preto: #0D0D0D;
    --white: #F2F2F0;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--azul-escuro);
    background-color: var(--branco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--azul-marinho);
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--azul-marinho);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--azul-escuro);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--azul-claro);
    color: var(--branco);
    border: 2px solid var(--azul-claro);
}

.btn-primary:hover {
    background: transparent;
    color: var(--azul-claro);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--azul-claro);
    border: 2px solid var(--azul-claro);
}

.btn-secondary:hover {
    background: var(--azul-claro);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Section Labels */
.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--azul-claro);
    margin-bottom: 1rem;
    text-align: center;
}

/* Seção centralizada */
.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Animation Base */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    background: var(--branco);
    box-shadow: 0 2px 10px rgba(1, 17, 38, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: inline-block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--azul-escuro);
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--azul-claro);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--azul-marinho);
    color: var(--branco);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--azul-claro);
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--branco);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--branco);
    opacity: 0.9;
}

.hero-positioning {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--azul-claro);
    opacity: 1;
}

/* Video Embed */
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--azul-escuro);
    border-radius: 4px;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed-caption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    color: var(--branco);
    opacity: 0.85;
}

/* Video Placeholder */
.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--azul-escuro);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.play-button {
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(1,17,38,0.8));
    color: var(--branco);
    padding: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

/* Nossa Essência Section */
.nossa-essencia {
    padding: 80px 0;
    background: var(--branco);
    text-align: center;
}

.nossa-essencia h2 {
    color: var(--azul-marinho);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--azul-escuro);
}

/* Por que escolher Section */
.por-que-escolher {
    padding: 80px 0;
    background: var(--azul-escuro);
    color: var(--branco);
}

.por-que-escolher h2 {
    color: var(--branco);
    text-align: center;
    margin-bottom: 3rem;
}

.diretor-destaque {
    background: rgba(242, 242, 240, 0.1);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--azul-claro);
}

.diretor-destaque p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.frase-reforco {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--azul-claro);
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.numbered-card {
    background: rgba(242, 242, 240, 0.05);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(36, 147, 191, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.numbered-card:hover {
    transform: translateY(-5px);
    border-color: var(--azul-claro);
}

.card-number {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--azul-claro);
    margin-bottom: 1rem;
}

.numbered-card h3 {
    color: var(--branco);
    margin-bottom: 1rem;
}

.numbered-card p {
    color: var(--branco);
    opacity: 0.9;
}

/* Para quem é Section */
.para-quem {
    padding: 80px 0;
    background: var(--branco);
}

.para-quem h2 {
    color: var(--azul-marinho);
    text-align: center;
    margin-bottom: 3rem;
}

.publico-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.publico-item {
    padding: 2rem;
    text-align: center;
}

.publico-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.publico-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--azul-claro);
    margin-bottom: 1rem;
}

.publico-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--azul-escuro);
}

/* Prova Social Section */
.prova-social {
    padding: 80px 0;
    background: var(--azul-marinho);
    color: var(--branco);
    text-align: center;
}

.prova-social h2 {
    color: var(--branco);
    margin-bottom: 3rem;
}

.carousel-showcase {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.photo-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-viewport {
    position: relative;
    flex: 1;
    aspect-ratio: 16/9;
    background: var(--azul-escuro);
    border-radius: 4px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-slide.is-active {
    opacity: 1;
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(242, 242, 240, 0.25);
    border-radius: 50%;
    background: rgba(242, 242, 240, 0.08);
    color: var(--branco);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.carousel-btn span {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    margin-top: -2px;
}

.carousel-btn:hover {
    background: var(--azul-claro);
    border-color: var(--azul-claro);
    transform: scale(1.05);
}

.carousel-btn:focus-visible {
    outline: 2px solid var(--azul-claro);
    outline-offset: 2px;
}

.marise-context {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
}

.marise-context .marise-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--azul-claro);
    margin-bottom: 0.75rem;
}

.marise-context p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.depoimento-destaque {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.depoimento-content {
    background: rgba(242, 242, 240, 0.1);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--azul-claro);
}

.depoimento-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
}

.depoimento-content cite {
    color: var(--azul-claro);
    font-weight: 500;
}

/* Como funciona Section */
.como-funciona {
    padding: 80px 0;
    background: var(--branco);
}

.como-funciona h2 {
    color: var(--azul-marinho);
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--azul-claro);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.125rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--azul-escuro);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--azul-escuro);
    line-height: 1.6;
}

.step-separator {
    width: 2px;
    height: 40px;
    background: var(--azul-claro);
    margin: 0 auto;
    opacity: 0.3;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: var(--azul-escuro);
    color: var(--branco);
    text-align: center;
}

.cta-final h2 {
    color: var(--branco);
    margin-bottom: 2rem;
}

.cta-final p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.contato-info {
    font-size: 0.875rem;
    color: var(--azul-claro);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--azul-marinho);
    color: var(--branco);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--azul-claro);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.credentials-footer {
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 242, 240, 0.1);
    opacity: 0.6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 60px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #22BE5B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 1.4em;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }    .nav {
        display: none;
    }
    
    .header-content {
        justify-content: center;
        padding: 1.5rem 0;
    }
    
    .logo-img {
        height: 80px;
        max-width: 220px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .publico-grid {
        grid-template-columns: 1fr;
    }

    .photo-carousel {
        gap: 0;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 40px;
        height: 40px;
        background: rgba(1, 17, 38, 0.65);
    }

    .carousel-prev {
        left: 0.75rem;
    }

    .carousel-next {
        right: 0.75rem;
    }

    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }
    
      .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
        gap: 1rem;
    }
    
    .step-separator {
        width: 40px;
        height: 2px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
        height: 50px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        justify-content: center;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 2rem 0;
    }
    
    .logo-img {
        height: 70px;
        max-width: 190px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        width: 100%;
    }
    
    .section-text {
        font-size: 1rem;
    }
}
