/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS para Breakpoints Responsivos */
:root {
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #313131;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Mobile first - padding menor */
}

/* Container específico do header para melhor controle */
.header .container {
    padding: 0 20px; /* Padding maior para desktop */
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 15px; /* Padding reduzido no mobile */
    }
}

/* Seções padronizadas */
section {
    position: relative;
    padding: 60px 0; /* Mobile first - padding menor */
}

section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Override para header container */
.header .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px; /* Mobile first - altura menor */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative; /* Para controle de posicionamento */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo à esquerda, menu/botão à direita */
    width: 100%;
    height: 100%;
    min-height: 70px; /* Garante altura mínima */
    gap: 1rem; /* Espaçamento entre elementos */
}

.logo {
    height: 44px; /* Mobile first - 60px - 16px = 44px */
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center; /* Centraliza verticalmente o logo */
}

.logo img {
    height: 44px; /* Mobile first - 60px - 16px = 44px */
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center; /* Alinha verticalmente o nav */
    flex-shrink: 0;
    height: 100%; /* Ocupa a altura total do header */
}

.nav ul {
    display: flex;
    align-items: center; /* Centraliza verticalmente os itens da lista */
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    height: 100%; /* Ocupa a altura total */
}

.nav li {
    display: flex;
    align-items: center; /* Centraliza verticalmente cada item */
    height: 100%;
}

.nav a {
    text-decoration: none;
    color: #313131;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2BB0B5;
}

/* Destaque do botão "Meus Produtos" no header */
.nav .meus-produtos-btn {
    background: linear-gradient(45deg, #E87E10, #EDAC40);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(232, 126, 16, 0.35);
    border: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav .meus-produtos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 126, 16, 0.5);
    color: #fff !important;
}

@media (max-width: 768px) {
    .nav .meus-produtos-btn {
        padding: 8px 14px;
        font-weight: 700;
    }
}

/* Regras para desktop */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav {
        display: flex !important;
        align-items: center;
    }
    
    .nav ul {
        display: flex !important;
        opacity: 1 !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 2rem !important;
        transform: none !important;
        pointer-events: auto !important;
        visibility: visible !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        z-index: auto !important;
        list-style: none !important;
        margin: 0 !important;
    }
}

/* Botão Hamburger (mobile) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 4px;
}

.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #313131;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-toggle .bar:nth-child(1) {
    top: 12px;
}

.nav-toggle .bar:nth-child(2) {
    top: 19px;
}

.nav-toggle .bar:nth-child(3) {
    top: 26px;
}

/* Estado ativo do hamburger - animação em X */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Layout mobile e tablet do menu */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex !important; /* Força exibição no mobile e tablet */
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }

    .nav {
        position: relative;
    }

    /* Menu dropdown mobile - Fullscreen */
    .nav ul {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: auto !important;
        min-height: calc(100vh - 70px) !important;
        background: #ffffff !important;
        z-index: 1200 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 20px 30px 40px 30px !important;
        margin: 0 !important;
        list-style: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(100%) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0 !important;
        border: none !important;
        box-shadow: none !important;
        max-width: none !important;
        min-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Menu aberto no mobile */
    .nav.mobile-open ul {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    /* Reset de estilos para os itens da lista */
    .nav ul li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
        flex-shrink: 0;
        height: 60px;
        display: flex;
        align-items: center;
    }

    .nav ul li:last-child {
        border-bottom: none;
        height: auto;
    }

    /* Estilos dos links */
    .nav ul li a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        color: #2c5f5a;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .nav ul li a:hover {
        color: #2bb0b5;
    }

    /* Botão CTA "Meus Produtos" destacado */
    .nav ul li a.meus-produtos-btn {
        background: #ff6b35;
        color: white !important;
        padding: 0 20px;
        border-radius: 8px;
        margin: 16px 0 0 0 !important;
        height: 60px;
        text-align: center;
        justify-content: center;
        font-weight: 600;
        transition: background-color 0.2s ease;
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .nav ul li a.meus-produtos-btn:hover {
        background: #e55a2e;
        color: white !important;
    }

    /* Garantir que o menu mobile ocupe toda a tela */
    body.no-scroll {
        overflow: hidden !important;
    }

    .nav.mobile-open ul {
        box-sizing: border-box !important;
    }

    /* Resetar qualquer limitação de container */
    .nav.mobile-open ul .container {
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Guia do Construtor - Features empilhadas no tablet */
    .launch-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hero Home Tablet */
    .hero-home .subtitle {
        font-size: 1.3rem;
    }
}

/* Evita scroll no body ao abrir o menu (opcional) */
.no-scroll {
    overflow: hidden;
}

/* Correções adicionais para dispositivos menores */
@media (max-width: 480px) {
    .header {
        height: 65px; /* Altura reduzida em móveis pequenos */
    }
    
    .logo {
        height: 38px;
    }
    
    .logo img {
        height: 38px;
    }
    
    .nav ul {
        min-width: 200px; /* Menu um pouco mais estreito */
        right: 10px; /* Alinhado mais próximo da borda */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #267072 0%, #0d383d 50%, #313131 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    background: linear-gradient(45deg, #E87E10, #EDAC40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature .icon {
    font-size: 1.4rem;
    min-width: 1.4rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, #E87E10, #EDAC40);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 126, 16, 0.3);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
    text-decoration: none;
}

.cta-button.large {
    padding: 1.75rem 4rem;
    font-size: 1.4rem;
    width: 100%;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(45deg, #E87E10, #EDAC40);
    box-shadow: 0 10px 25px rgba(232, 126, 16, 0.4);
}

.cta-button.primary:hover {
    box-shadow: 0 15px 35px rgba(232, 126, 16, 0.6);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: rgba(237, 172, 64, 0.05);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.8rem; /* Mobile first - fonte menor */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #313131;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1A6872;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(237, 172, 64, 0.2);
    text-align: center;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 172, 64, 0.4);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(237, 172, 64, 0.1), rgba(237, 172, 64, 0.05));
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.problem-item p {
    font-size: 1rem;
    color: #1A6872;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.solution-callout {
    background: linear-gradient(135deg, #2BB0B5, #1A6872);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(43, 176, 181, 0.3);
}

.solution-callout h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 176, 181, 0.2);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(43, 176, 181, 0.4);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(43, 176, 181, 0.1), rgba(43, 176, 181, 0.05));
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #313131;
    line-height: 1.4;
}

.benefit-card p {
    color: #1A6872;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}



/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2BB0B5 0%, #1A6872 100%);
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card {
    background: white;
    color: #313131;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #313131;
}

.price-container {
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    color: #1A6872;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 1.1rem;
    color: #1A6872;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #E87E10;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 1rem;
    color: #1A6872;
}

.guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.2rem;
}

.included-items {
    text-align: left;
    margin-bottom: 2rem;
}

.included-items h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.included-items ul {
    list-style: none;
    padding: 0;
}

.included-items li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(43, 176, 181, 0.2);
}

.security-note {
    font-size: 0.9rem;
    color: #1A6872;
    margin-top: 1rem;
}

.guarantee-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(43, 176, 181, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(43, 176, 181, 0.08);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #313131;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2BB0B5;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #1A6872;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a6872;
    color: white;
    padding: 2rem 0; /* Reduzido para mobile */
}

.footer-content {
    display: flex;
    flex-direction: column; /* Mobile first - empilhado */
    align-items: center; /* Mobile first - centralizado */
    text-align: center; /* Mobile first - texto centralizado */
    gap: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem; /* Reduzido para mobile */
}

.footer-info {
    text-align: center; /* Mobile first - centralizado */
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    margin: 0 0.5rem;
    color: #1A6872;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for interactive elements */
.benefit-card,
.problem-item,
.faq-item {
    cursor: pointer;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(237, 172, 64, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #2BB0B5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1A6872;
}

/* Additional Styles for Pricing Section */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 3rem;
}

.pricing-card .card-subtitle {
    color: #1A6872;
    margin-bottom: 2rem;
    min-height: 40px;
}

.pricing-card.recommended {
    transform: scale(1.05);
    border: 3px solid #E87E10;
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #E87E10, #EDAC40);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.included-items ul li strong {
    color: #2BB0B5;
}

.included-items ul li {
    font-size: 0.95rem;
}

.included-items h4 strong {
    color: #313131;
}

/* Responsividade para a Grade de Preços - Consolidado nas media queries principais acima */

/* Estilos específicos para a página principal */
.hero-home {
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 48, 53, 0.7) 0%, rgba(30, 100, 102, 0.6) 50%, rgba(26, 104, 114, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(237, 172, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-home .container {
    position: relative;
    z-index: 1;
}

.hero-home h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-home h1 .highlight-gradient {
    background: linear-gradient(135deg, #EDAC40 0%, #FFC107 50%, #EDAC40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-home h1 .highlight-gradient {
    background: linear-gradient(135deg, #EDAC40 0%, #FFC107 50%, #EDAC40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-home .subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* Seção da Equipe (Carrossel de Profissionais) */
.team-section {
    background: #f8f9fa;
    padding: 60px 0; /* Reduzido para mobile */
    overflow-x: hidden; /* Força overflow hidden horizontal */
    width: 100%;
}

.team-section .container {
    padding: 0 15px; /* Garante padding lateral */
    max-width: 100%;
    overflow-x: hidden;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem; /* Reduzido */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.team-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px; /* Espaço para os controles */
    overflow-x: hidden;
}

.team-carousel-container {
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.team-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.team-slide.active {
    display: block;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* Reduzido para mobile */
    align-items: center;
    text-align: center;
}

.team-image {
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px; /* Reduzido para mobile */
}

.team-image img {
    width: 100%;
    height: 500px; /* Altura fixa para manter consistência */
    object-fit: cover; /* Mantém proporção sem distorcer */
    object-position: center top; /* Foca no topo da imagem */
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    display: block;
}

.team-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px; /* Adiciona padding para não encostar nas bordas */
}

.team-name {
    font-size: 2rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.2rem;
    color: #E87E10;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.team-stats .stat-item {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-stats .stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-stats .stat-item:hover::before {
    opacity: 1;
}

.team-stats .stat-item:hover {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-color: #667eea30;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.team-stats .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.team-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.3;
}

/* Controles do Carrossel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(43, 176, 181, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.carousel-control:hover {
    background: #2BB0B5;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control span {
    display: block;
    line-height: 1;
    margin-top: -2px; /* Ajuste fino para centralização perfeita */
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators .indicator.active {
    background: #2BB0B5;
    width: 30px;
    border-radius: 6px;
}

.carousel-indicators .indicator:hover {
    background: #E87E10;
}

/* Animação de Fade */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Seção de Lançamento - Guia do Construtor */
.launch-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.launch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(43,176,181,0.1)" fill="none" stroke-width="2"/></svg>') repeat;
    opacity: 0.3;
}

.launch-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.launch-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: linear-gradient(135deg, #E87E10, #EDAC40);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(232, 126, 16, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(232, 126, 16, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(232, 126, 16, 0.6);
    }
}

.launch-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2BB0B5, #EDAC40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-logo-container {
    margin: 2rem auto;
    text-align: center;
}

.launch-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.launch-subtitle {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.launch-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.launch-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(43, 176, 181, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.launch-feature:hover {
    transform: translateY(-10px);
    border-color: #2BB0B5;
    box-shadow: 0 10px 30px rgba(43, 176, 181, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.launch-feature h3 {
    font-size: 1.4rem;
    color: #2BB0B5;
    margin-bottom: 1rem;
    font-weight: 700;
}

.launch-feature p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.launch-cta {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.launch-description {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.launch-notify-btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(43, 176, 181, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.launch-notify-btn:hover {
    box-shadow: 0 12px 35px rgba(43, 176, 181, 0.6);
    transform: translateY(-2px);
}

.launch-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Responsivo para desktop - Equipe */
@media (min-width: 992px) {
    .team-content {
        grid-template-columns: 400px 1fr;
        text-align: left;
        gap: 4rem;
    }
    
    .team-image {
        margin: 0;
    }
    
    .team-text {
        margin: 0;
        max-width: none;
    }
    
    .team-stats {
        justify-items: stretch;
        gap: 1rem;
    }
    
    .team-stats .stat-item {
        text-align: center;
        padding: 1.2rem 0.8rem;
        min-height: 100px;
    }
    
    .carousel-control.prev {
        left: 20px;
    }
    
    .carousel-control.next {
        right: 20px;
    }
    
    /* Launch Section Responsive */
    .launch-title {
        font-size: 2.5rem;
    }
    
    .launch-subtitle {
        font-size: 1.2rem;
    }
    
    .launch-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile - Ajustes para telas pequenas */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Previne scroll horizontal global */
    }
    
    .team-section {
        padding: 40px 0; /* Menos padding vertical */
        overflow-x: hidden;
    }
    
    .team-content {
        gap: 1.5rem; /* Menos espaço entre elementos */
        overflow-x: hidden;
    }
    
    .team-carousel {
        padding: 0; /* Remove padding que pode causar overflow */
        overflow-x: hidden;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
        z-index: 20; /* Acima de tudo */
    }
    
    .carousel-control span {
        margin-top: -2px; /* Centralização do ícone */
    }
    
    .carousel-control.prev {
        left: 5px;
    }
    
    .carousel-control.next {
        right: 5px;
    }
    
    .team-image {
        padding: 0 5px; /* Padding mínimo */
        max-width: 100%;
        overflow: hidden; /* Esconde qualquer overflow da decoração */
    }
    
    /* Esconde a decoração em mobile para evitar overflow */
    .image-decoration {
        display: none;
    }
    
    .team-image img {
        height: 350px; /* Altura menor em mobile */
        width: 100%;
        margin: 0 auto;
    }
    
    .team-text {
        padding: 0 10px; /* Padding reduzido */
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .team-name {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .team-role {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .team-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .team-stats {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .team-stats .stat-item {
        padding: 1rem 0.5rem;
        min-height: 90px;
    }
    
    .team-stats .stat-number {
        font-size: 1.6rem;
    }
    
    .team-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .carousel-indicators {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Launch Section Mobile */
    .launch-section {
        padding: 3rem 1rem;
    }
    
    .launch-content {
        padding: 0 0.5rem;
    }
    
    .launch-badge {
        margin-bottom: 1rem;
    }
    
    .badge-text {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .launch-logo-container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .launch-logo {
        height: 120px;
        max-width: 100%;
    }
    
    .launch-title {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 0.8rem;
    }
    
    .launch-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .launch-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
        margin: 2rem 0;
    }
    
    .launch-feature {
        padding: 1.5rem 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .launch-feature h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .launch-feature p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .launch-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .launch-notify-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto 0.8rem;
    }
    
    .launch-note {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

/* Ajustes extras para telas muito pequenas */
@media (max-width: 480px) {
    .team-carousel {
        overflow-x: hidden;
    }
    
    .team-image {
        padding: 0; /* Remove todo padding */
    }
    
    .team-image img {
        height: 280px;
        border-radius: 15px; /* Bordas um pouco menores */
    }
    
    .team-text {
        padding: 0 8px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.85rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
    
    .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .carousel-control span {
        margin-top: -2px; /* Centralização do ícone */
    }
    
    .carousel-control.prev {
        left: 3px;
    }
    
    .carousel-control.next {
        right: 3px;
    }
}

.hero-badge {
    background: rgba(237, 172, 64, 0.9);
    color: #313131;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-highlight {
    color: #EDAC40;
    text-shadow: 0 2px 10px rgba(237, 172, 64, 0.3);
}

.text-highlight {
    background: linear-gradient(135deg, #E87E10, #EDAC40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem auto;
    max-width: 800px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 1.2rem;
    color: #EDAC40;
}

.hero-cta {
    margin-top: 3rem;
}

.hero-offer {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.offer-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #EDAC40;
    margin-bottom: 0.5rem;
}

.offer-price .price-old {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.offer-price .price-new {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #EDAC40;
    text-shadow: 0 2px 10px rgba(237, 172, 64, 0.3);
}

.hero-button {
    font-size: 1.1rem;
    padding: 18px 40px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-guarantee {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.products-section {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first - 1 coluna */
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem; /* Reduzido para mobile */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-logo {
    width: 160px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #313131;
}

.product-card p {
    color: #1A6872;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-button {
    background: linear-gradient(135deg, #2BB0B5 0%, #1A6872 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.product-button:hover {
    opacity: 0.9;
}

/* Avaliações com Estrelas */
.product-rating {
    margin: 15px 0;
    text-align: center;
}

.rating-stars {
    font-size: 18px;
    color: #ffd700;
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.rating-stars .material-icons {
    font-size: 18px;
    line-height: 1;
}

.reviews-count {
    font-size: 13px;
    color: #666;
    margin-left: 8px;
    font-weight: 500;
}

.product-stats {
    margin-top: 10px;
    text-align: center;
}

.product-stats small {
    color: #777;
    font-size: 12px;
}

.product-card.featured {
    border: 2px solid #E87E10;
    position: relative;
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #E87E10 0%, #EDAC40 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.free-badge {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #E87E10;
    margin: 1rem 0;
    text-align: center;
}

.product-button.primary {
    background: linear-gradient(135deg, #E87E10 0%, #EDAC40 100%);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.product-card.premium {
    border: 2px solid #EDAC40;
    position: relative;
    background: linear-gradient(145deg, #fff, rgba(237, 172, 64, 0.02));
}

.product-card.premium .product-badge {
    background: linear-gradient(135deg, #EDAC40 0%, #E87E10 100%);
}

.product-card.free {
    border: 2px solid #34d399;
    position: relative;
    background: linear-gradient(145deg, #fff, rgba(52, 211, 153, 0.02));
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.price-new {
    font-size: 2rem;
    font-weight: 800;
    color: #E87E10;
}



.about-section {
    padding: 100px 0;
    background: rgba(237, 172, 64, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A6872;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(43, 176, 181, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(43, 176, 181, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2BB0B5;
    display: block;
    transition: all 0.3s ease;
    min-height: 3rem;
}

.stat-label {
    color: #1A6872;
    font-weight: 500;
    font-size: 1rem;
}

/* ============================================
   SEÇÃO SISPRAT - PLATAFORMA SAAS
   ============================================ */
.sisprat-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sisprat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.sisprat-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.sisprat-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sisprat-logo {
    max-width: 300px;
}

.sisprat-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.sisprat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(43, 176, 181, 0.2);
    border: 2px solid #2BB0B5;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2BB0B5;
}

.sisprat-badge .material-icons {
    font-size: 1.3rem;
}

.sisprat-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #2BB0B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sisprat-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sisprat-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.sisprat-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sisprat-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #2BB0B5;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(43, 176, 181, 0.2);
}

.sisprat-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2BB0B5 0%, #1A6872 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(43, 176, 181, 0.3);
}

.sisprat-feature-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.sisprat-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.sisprat-feature p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.sisprat-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button.sisprat-btn {
    background: linear-gradient(135deg, #2BB0B5 0%, #1A6872 100%);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(43, 176, 181, 0.4);
}

.cta-button.sisprat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(43, 176, 181, 0.6);
    background: linear-gradient(135deg, #33c4c9 0%, #1f7a82 100%);
}

.cta-button.sisprat-btn .material-icons {
    font-size: 1.5rem;
}

.sisprat-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.75;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .sisprat-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sisprat-title {
        font-size: 2.5rem;
    }
    
    .sisprat-subtitle {
        font-size: 1.2rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .sisprat-section {
        padding: 60px 0;
    }
    
    .sisprat-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .sisprat-title {
        font-size: 2rem;
    }
    
    .sisprat-subtitle {
        font-size: 1.1rem;
    }
    
    .sisprat-logo {
        max-width: 220px;
    }
    
    .sisprat-feature {
        padding: 1.5rem;
    }
    
    .cta-button.sisprat-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.cta-section {
    background: linear-gradient(135deg, #2BB0B5 0%, #1A6872 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button:not(.primary) {
    background: white;
    color: #2BB0B5;
    font-weight: 700;
}

.cta-section .cta-button:not(.primary):hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-price-highlight {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 400px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-price-old {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.cta-price-new {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #EDAC40;
    text-shadow: 0 2px 10px rgba(237, 172, 64, 0.3);
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Mobile first - altura do header menor */
}

/* Páginas Legais (Termos de Uso, Política de Privacidade) */
.legal-page {
    padding: 160px 0 100px;
    background: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2BB0B5;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 2px solid #EDAC40;
    padding-bottom: 0.5rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #313131;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content em {
    color: #1A6872;
    font-style: italic;
    display: block;
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content strong {
    color: #E87E10;
    font-weight: 600;
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ===================================================== */

/* Base styles (Mobile First - 320px+) */
/* Estilos base já definidos acima para mobile */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-home h1 {
        font-size: 2.2rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-button {
        width: auto;
        min-width: 250px;
    }
    
    .products-grid {
        grid-template-columns: 1fr; /* Mantém 1 coluna até tablet */
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        height: 80px;
    }
    
    .logo,
    .logo img {
        height: 60px; /* Tamanho original restaurado para tablet/desktop */
    }
    
    .hero-home {
        padding: 200px 0 120px;
    }
    
    .hero-home h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .hero-home .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pilares-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .filosofia-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-card {
        padding: 2rem; /* Padding normal para tablet */
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    html {
        scroll-padding-top: 80px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0; /* Padding maior para desktop */
    }
    
    .footer-info {
        text-align: right;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .cta-button {
        width: auto;
        min-width: 200px;
    }
    
    .team-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-home {
        padding: 220px 0 140px;
    }
    
    .hero-home h1 {
        font-size: 3.8rem;
        letter-spacing: -1.5px;
    }
    
    .hero-home .subtitle {
        font-size: 1.4rem;
        max-width: 800px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    

    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-home {
        padding: 240px 0 160px;
    }
    
    .hero-home h1 {
        font-size: 4.2rem;
        letter-spacing: -2px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-home .subtitle {
        font-size: 1.45rem;
        max-width: 850px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-benefits {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        gap: 3rem;
    }
}

/* =============================
   Merged from common/style.css
   ============================= */

/* Estilos para Páginas da Pasta Common - Sistema Prático */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #313131;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav {
    margin-left: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #313131;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2BB0B5;
}

/* Footer */
.footer {
    background: #1a6872;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-info {
    text-align: center;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    margin: 0 0.5rem;
    color: #1A6872;
}

/* Páginas Legais (Termos de Uso, Política de Privacidade) */
.legal-page {
    padding: 160px 0 100px;
    background: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2BB0B5;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 2px solid #EDAC40;
    padding-bottom: 0.5rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #313131;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content em {
    color: #1A6872;
    font-style: italic;
    display: block;
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content strong {
    color: #E87E10;
    font-weight: 600;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #313131;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* Estilos para o Painel de Páginas Comuns */
.common-panel {
    padding: 160px 0 100px;
    background: #f5f5f5;
    min-height: 100vh;
}

.common-panel .container {
    max-width: 800px;
    margin: 0 auto;
}

.header-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-panel h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 0.5rem;
}

.header-panel p {
    color: #1A6872;
    font-size: 1.1rem;
}

.common-menu {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.common-menu h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #313131;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #EDAC40;
    padding-bottom: 0.5rem;
}

.common-menu h2:first-of-type {
    margin-top: 0;
}

.menu-item {
    display: block;
    padding: 15px;
    margin: 10px 0;
    background: #2BB0B5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.menu-item:hover {
    background: #239399;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 176, 181, 0.3);
}

.back-link {
    color: #666;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-link:hover {
    background: rgba(43, 176, 181, 0.1);
    color: #2BB0B5;
}

/* Responsividade */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        height: 80px;
    }
    
    .logo,
    .logo img {
        height: 60px;
    }
    
    .legal-page,
    .common-panel {
        padding: 160px 0 100px;
    }
    
    .header-panel h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0;
    }
    
    .footer-info {
        text-align: right;
    }
    
    html {
        scroll-padding-top: 80px;
    }
    
    /* Launch Section Tablet */
    .launch-section {
        padding: 4rem 2rem;
    }
    
    .launch-logo {
        height: 180px;
    }
    
    .launch-title {
        font-size: 2.5rem;
    }
    
    .launch-subtitle {
        font-size: 1.2rem;
    }
    
    .launch-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .launch-feature {
        padding: 2rem 1.5rem;
    }
    
    .launch-notify-btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        max-width: 400px;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    .legal-content h1 {
        font-size: 3rem;
    }
    
    /* Launch Section Desktop */
    .launch-section {
        padding: 5rem 2rem;
    }
    
    .launch-logo {
        height: 220px;
    }
    
    .launch-title {
        font-size: 3rem;
    }
    
    .launch-subtitle {
        font-size: 1.3rem;
    }
    
    .launch-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .launch-feature {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .launch-feature h3 {
        font-size: 1.4rem;
    }
    
    .launch-feature p {
        font-size: 1rem;
    }
    
    .launch-notify-btn {
        font-size: 1.2rem;
        padding: 1rem 3rem;
        max-width: none;
        width: auto;
        display: inline-block;
    }
}
/* ========================================
   ESTILOS ESPECÍFICOS DA HOMEPAGE
   (Consolidados de homepage-styles.css)
   ======================================== */

/* Seção Pilares - Estilos Específicos */
.pilares-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pilares-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pilar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pilar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pilar-icon .material-icons {
    font-size: 40px;
    color: white;
}

.pilar-icon-logo {
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pilar-icon-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pilar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.pilar-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pilar-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pilar-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Seção Filosofia - Estilos Específicos */
.filosofia-section {
    padding: 80px 0;
    background: white;
}

.filosofia-intro {
    max-width: 800px;
    margin: 2rem auto 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.filosofia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.filosofia-item {
    text-align: center;
}

.filosofia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.filosofia-icon .material-icons {
    font-size: 36px;
    color: white;
}

.filosofia-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.filosofia-item p {
    color: #718096;
    font-size: 1rem;
}

/* Seção Team - Layout Moderno (Específico Homepage) */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: #718096;
    font-weight: 400;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.team-card-modern {
    perspective: 1000px;
    height: 100%;
}

.team-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.team-image-modern {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #ffffff;
    flex-shrink: 0;
}

.team-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.team-card-inner:hover .team-image-modern img {
    transform: scale(1.05);
}

.team-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.team-content-modern {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-header-modern {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f0f0f0;
}

.team-name-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-role-modern {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #667eea30;
}

.team-description-modern {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Lead Magnet Section - Estilos Específicos */
.lead-magnet-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lead-magnet-section .section-title {
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

.lead-magnet-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lead-magnet-info {
    text-align: left;
}

.lead-magnet-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead-magnet-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.lead-magnet-benefits .material-icons {
    font-size: 24px;
    color: #a3ffb8;
    flex-shrink: 0;
}

.lead-magnet-info .cta-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lead-magnet-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-magnet-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.lead-magnet-image img:hover {
    transform: translateY(-5px);
}

.lead-magnet-privacy {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-buttons .cta-button {
    min-width: 260px;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* Responsive Adjustments para estilos da homepage */
@media (max-width: 968px) {
    .team-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title-modern {
        font-size: 2rem;
    }
    
    /* Layout horizontal para tablet - foto ao lado */
    .team-card-inner {
        flex-direction: row;
        min-height: 450px;
    }
    
    .team-image-modern {
        width: 45%;
        height: auto;
        min-height: 100%;
        flex-shrink: 0;
    }
    
    .team-image-modern img {
        object-position: center top;
    }
    
    .team-content-modern {
        flex: 1;
        padding: 2rem 1.5rem;
    }

    .team-stats {
        gap: 0.75rem;
    }
    
    .team-stats .stat-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
    }
    
    .team-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .team-stats .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Voltar layout vertical no mobile */
    .team-card-inner {
        flex-direction: column !important;
        min-height: auto;
        height: auto;
    }
    
    .team-image-modern {
        width: 100% !important;
        height: 280px;
        flex-shrink: 0;
    }
    
    .team-image-modern img {
        object-position: center center;
    }
    
    .team-content-modern {
        padding: 2rem;
        flex: 1;
        width: 100%;
    }
    
    .team-name-modern {
        font-size: 1.5rem;
    }
    
    .team-description-modern {
        font-size: 0.95rem;
    }
    
    .lead-magnet-section {
        padding: 40px 0;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lead-magnet-info {
        text-align: center;
    }
    
    .lead-magnet-info h3 {
        font-size: 1.5rem;
    }
    
    .lead-magnet-info p {
        font-size: 1rem;
    }
    
    .lead-magnet-benefits {
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 0;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    /* Hero Home Mobile */
    .hero-home {
        padding: 140px 0 80px;
    }
    
    .hero-home h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .hero-home .subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.17rem;
        line-height: 1.5;
    }
    
    /* Pilares Section Mobile */
    .pilares-section {
        padding: 40px 0;
    }
    
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pilar-card {
        padding: 1.5rem;
    }
    
    .pilar-icon-logo img {
        max-width: 120px;
        height: auto;
    }
    
    .pilar-card h3 {
        font-size: 1.3rem;
    }
    
    .pilar-card p {
        font-size: 0.95rem;
    }
    
    /* Filosofia Section Mobile */
    .filosofia-section {
        padding: 40px 0;
    }
    
    .filosofia-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filosofia-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Produtos Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-logo {
        max-width: 150px;
        margin-bottom: 1rem;
    }
    
    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .product-features li {
        font-size: 0.85rem;
    }
    
    .product-price {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .price-current {
        font-size: 1.75rem;
    }
    
    .price-installments {
        font-size: 0.85rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .pricing-card .price-installments {
        font-size: 0.9rem;
    }
    
    /* Benefícios Grid Mobile */
    .benefits-grid,
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item,
    .hero-benefit {
        padding: 1rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Section Title Mobile */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Team Section Mobile */
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-image-modern {
        height: 250px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .hero-home h1 {
        font-size: 1.5rem;
    }
    
    .hero-home .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .pilar-card h3,
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 14px 18px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 640px) {
    .section-header-modern {
        margin-bottom: 2.5rem;
    }

    .section-title-modern {
        font-size: 1.75rem;
    }
}


/* ===================================================
   SE��O DE PRODUTOS - ESTILOS RESPONSIVOS
   =================================================== */

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card.premium {
    border: 2px solid #EDAC40;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.product-card.free {
    border: 2px solid #10B981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #EDAC40 0%, #E87E10 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(237, 172, 64, 0.3);
}

.product-badge.free-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.product-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1A6872;
    font-weight: 700;
}

.product-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li::before {
    content: '';
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-new, .price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #1A6872;
}

.price-installments, .installments {
    font-size: 0.85rem;
    color: #666;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .material-icons {
    font-size: 18px;
    color: #EDAC40;
}

.reviews-count {
    font-size: 0.85rem;
    color: #666;
}

.product-cta {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2BB0B5 0%, #1A6872 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(43, 176, 181, 0.3);
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(43, 176, 181, 0.4);
}

.product-cta.free-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.product-cta.free-cta:hover {
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .product-logo {
        max-width: 220px;
    }
}

/* Desktop (992px+) */
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .product-card {
        padding: 2.5rem 2rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .products-grid {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

