:root {
    --primary-color: #E63946;
    /* Vermelho vibrante */
    --primary-dark: #B71C1C;
    --secondary-color: #1D3557;
    /* Azul Marinho Profundo */
    --accent-color: #F1FAEE;
    /* Branco Off-white */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --background: #F9FAFB;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 30px -10px 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: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #F1FAEE 0%, #FFFFFF 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Decor */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 450px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-icon {
    font-size: 8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 10px 20px rgba(230, 57, 70, 0.2));
}

/* Features */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--background);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(29, 53, 87, 0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--background);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    text-align: left;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
    flex: 1;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }

    .image-wrapper {
        margin: 40px auto 0;
        height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* 3D Image Styles */
.image-wrapper-3d {
    width: 100%;
    max-width: 600px;
    /* Ajuste conforme necessário para a imagem */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float-image 6s ease-in-out infinite;
}

.hero-img-3d {
    width: 100%;
    height: auto;
    /* Tenta clarear o fundo da imagem e aumentar contraste para destacar elementos */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1)) brightness(1.05) contrast(1.02);
    transition: transform 0.3s ease;
    /* Cria uma borda suave que desaparece, escondendo o formato retangular */
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 70%);
    mask-image: radial-gradient(circle at center, black 50%, transparent 70%);
}

.hero-img-3d:hover {
    transform: scale(1.02);
}

@keyframes float-image {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsividade da Imagem */
@media (max-width: 768px) {
    .image-wrapper-3d {
        max-width: 100%;
        margin-top: 40px;
    }
}

/* Adicionando estilos para o carrossel de pitch */

.pitch-carousel-section {
    padding: 0 0 60px 0;
    /* Espaço apenas embaixo, em cima já tem da Hero */
    background: transparent;
    position: relative;
    top: -60px;
    /* Puxa para cima para sobrepor levemente a transição */
    z-index: 5;
    margin-bottom: -40px;
    /* Compensa o top negativo */
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 380px;
    /* Altura fixa para manter layout estável */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    /* Arredondar cantos do container também */
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.pitch-card {
    background: var(--white);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 850px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: grab;
    height: 100%;
    /* Ocupar altura total do slide */
    justify-content: center;
}

.pitch-card:active {
    cursor: grabbing;
}

.pitch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    background: rgba(230, 57, 70, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pitch-card h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.pitch-card p {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

/* Indicadores (Bolinhas) */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
}

.carousel-indicator {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 900px) {
    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}

@media (max-width: 768px) {
    .pitch-carousel-section {
        padding: 40px 0;
        top: 0;
        margin-bottom: 0;
    }

    .carousel-container {
        height: auto;
        padding-bottom: 0;
    }

    .pitch-card {
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .carousel-btn {
        display: none;
        /* Esconde botões laterais no mobile */
    }
}