/* VARIÁVEIS GLOBAIS */
:root {
    /* Cores primárias e secundárias */
    --primary-color: #1a56db; /* Azul mais profundo */
    --primary-dark: #0f3d9b; /* Azul mais escuro */
    --primary-light: #3f80ff; /* Azul mais claro */
    --secondary-color: #00b4d8; /* Azul ciano */
    --secondary-dark: #0077b6; /* Azul ciano escuro */
    --secondary-light: #90e0ef; /* Azul ciano claro */
    
    /* Cores de destaque */
    --accent-color: #ff5757; /* Vermelho mais vibrante */
    --accent-hover: #ff2f2f; /* Vermelho hover */
    --accent-light: #ff8080; /* Vermelho claro */
    --accent-dark: #cc0000; /* Vermelho escuro */
    --accent-secondary: #ffb703; /* Amarelo/Dourado */
    --accent-tertiary: #8338ec; /* Roxo */
    --accent-quaternary: #06d6a0; /* Verde Turquesa */
    
    /* Tons neutros */
    --dark-color: #1e293b; /* Azul escuro quase preto */
    --dark-medium: #334155; /* Cinza azulado médio */
    --light-color: #f8fafc; /* Branco azulado */
    --light-gray: #f1f5f9; /* Cinza bem claro */
    --card-color: #ffffff;
    --gray-light: #e2e8f0;
    --gray-medium: #94a3b8;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #1a56db, #0f3d9b);
    --gradient-primary-vibrant: linear-gradient(135deg, #2563eb, #3b82f6);
    --gradient-secondary: linear-gradient(135deg, #00b4d8, #0077b6);
    --gradient-accent: linear-gradient(135deg, #ff5757, #ff2f2f);
    --gradient-accent-vibrant: linear-gradient(45deg, #ff5757, #ff9747);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ff9500);
    --gradient-purple: linear-gradient(135deg, #8338ec, #3a0ca3);
    --gradient-green: linear-gradient(135deg, #06d6a0, #059669);
    --gradient-sunset: linear-gradient(to right, #ff9966, #ff5e62);
    --gradient-ocean: linear-gradient(to right, #2bc0e4, #1a56db);
    --gradient-rainbow: linear-gradient(45deg, #ff5757, #ffb703, #06d6a0, #00b4d8, #8338ec);
    --gradient-header: linear-gradient(135deg, #1a56db, #3a0ca3);
    --gradient-card-hover: linear-gradient(135deg, rgba(26, 86, 219, 0.05), rgba(0, 180, 216, 0.1));
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-blue: 0 10px 20px rgba(26, 86, 219, 0.2);
    --shadow-red: 0 10px 20px rgba(255, 87, 87, 0.2);
    --shadow-gold: 0 10px 20px rgba(255, 183, 3, 0.2);
    --shadow-purple: 0 10px 20px rgba(131, 56, 236, 0.2);
    --shadow-green: 0 10px 20px rgba(6, 214, 160, 0.2);
    --shadow-glow: 0 0 15px rgba(26, 86, 219, 0.5);
    --shadow-glow-red: 0 0 15px rgba(255, 87, 87, 0.5);
    
    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Arredondamentos */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 2rem;
    --border-radius-full: 9999px;
}

/* RESET E ESTILOS BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
    background-image: linear-gradient(to bottom, #f8fafc, #ffffff);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* BOTÕES E ELEMENTOS DE INTERFACE */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary-vibrant);
    color: white;
}

.btn-primary:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent-vibrant);
    color: white;
}

.btn-accent:hover {
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-rainbow);
    border-radius: var(--border-radius-full);
}

.section-title i {
    margin-right: 0.7rem;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* HEADER */
.header {
    background: white;
    background: linear-gradient(to right, rgba(41, 155, 248, 0.9), rgba(35, 34, 79, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 86, 219, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    height: 70px; /* Redução do tamanho original de 70px */
    margin-right: 1rem;
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Estilizando os ícones sociais abaixo do logo */
.logo-social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Estilos para os botões de sistemas */
.system-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;    
}

.system-button {
    display: inline-block;
    transition: var(--transition-normal);
}

.system-button img {
    height: 60px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.system-button:hover img {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.15));
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-rainbow);
    opacity: 0;
    z-index: 0;
    transition: var(--transition-normal);
}

.social-icon i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
    color: white;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon.youtube:hover::before {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.social-icon.instagram:hover::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook:hover::before {
    background: linear-gradient(45deg, #4267B2, #3b5998);
}

.social-icon.whatsapp:hover::before {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

/* Mobile Nav */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* BANNER */
.banner-container {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.banner {
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center;
    animation: fadeIn 1.5s;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.5) 30%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.1) 70%, 
        transparent 100%);
}

.active-banner {
    display: block;
}

@keyframes fadeIn {
    from {opacity: 0.4; transform: scale(1.02);}
    to {opacity: 1; transform: scale(1);}
}

.banner-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    max-width: 600px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: slideUp 1s ease;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.2) 70%, 
        rgba(0,0,0,0) 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-left: 4px solid var(--accent-color);
}

@keyframes slideUp {
    from {transform: translateY(30px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.banner-title {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, white, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    align-items: left;
}


.banner-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: none;
    align-items: left;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    right: 5%;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.active-dot, .dot:hover {
    background-color: var(--light-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* SEÇÃO DE VÍDEO */
.video-section {
    padding: 5rem 0;
    background-color: var(--card-color);
    background-image: 
        radial-gradient(circle at top right, rgba(131, 56, 236, 0.05), transparent 400px),
        radial-gradient(circle at bottom left, rgba(6, 214, 160, 0.05), transparent 400px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    max-width: 90%;
    transition: var(--transition-slow);
    border: 5px solid white;
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 5px;
    background: var(--gradient-rainbow);    
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.video-container:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-blue);
}

.video-container:hover::before {
    opacity: 1;
}


/* BENEFÍCIOS */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at left top, rgba(0, 180, 216, 0.1), transparent 400px),
        radial-gradient(circle at right top, rgba(255, 87, 87, 0.05), transparent 300px),
        radial-gradient(circle at left bottom, rgba(255, 183, 3, 0.07), transparent 300px),
        radial-gradient(circle at right bottom, rgba(131, 56, 236, 0.05), transparent 400px);
    z-index: 0;
}

.benefit-category {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category-title i {
    margin-right: 0.7rem;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-rainbow);
    border-radius: var(--border-radius-full);
}

/* Ajuste para a seção de benefícios - cards com tamanhos iguais */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}


/* Estilo para o texto "Consultas aqui:" na botoesconsulta */
.botoesconsulta p {
    font-weight: 600;
    font-size: 1rem;
    color: #7c8fcf;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Efeito de linha animada abaixo do texto */
.botoesconsulta p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0056b3, #69c0e9);
    transition: width 0.4s ease;
}

.botoesconsulta:hover p::after {
    width: 80%;
}

/* Efeito de brilho no texto ao passar o mouse */
.botoesconsulta:hover p {
    color: #00a0e9;
    text-shadow: 0 0 5px rgba(0, 160, 233, 0.2);
    transform: translateY(-2px);
}


/* Increase YouTube video size */
.video-container iframe {
    width: 90%;
    height: 500px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border: none;
}

/* Fix banner content for mobile */
.banner-content {
    max-width: 90%;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}

/* Mobile responsiveness for banner content */
@media (max-width: 768px) {
    .banner-content {
        max-width: 100%;
        padding: 15px;
    }
    
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    .botoesconsulta p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .botoesconsulta:hover p::after {
        width: 60%;
    }
}

.benefit-card {
    background-color: var(--card-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%; /* Garante altura igual */
}

/* Ajuste específico para grids com 4 cards */
.benefit-category:first-of-type .benefits-grid,
.benefit-category:nth-of-type(2) .benefits-grid {
    grid-template-columns: repeat(4, 1fr); /* Força 4 colunas para as seções com 4 cards */
}

/* Ajuste específico para grids com 3 cards */
.benefit-category:nth-of-type(4) .benefits-grid {
    grid-template-columns: repeat(3, 1fr); /* Força 3 colunas para a seção com 3 cards */
}

/* Ajuste para a seção de parceria com o Sebrae */
#sebrae .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas de tamanho igual */
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .benefits-grid,
    .benefit-category:first-of-type .benefits-grid,
    .benefit-category:nth-of-type(2) .benefits-grid,
    .benefit-category:nth-of-type(4) .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets para todas as seções */
    }
}

/* Ajuste para centralização da seção Sebrae em dispositivos móveis */
@media (max-width: 768px) {
    .benefit-category#sebrae {
        text-align: center;
        padding: 0 15px;
    }
    
    .benefit-category#sebrae .benefits-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-category#sebrae .benefit-card {
        width: 100%;
        max-width: 450px; /* Limita a largura máxima em dispositivos móveis */
    }
}

/* Para telas ainda menores */
@media (max-width: 576px) {
    .benefit-category#sebrae .benefit-card {
        max-width: 100%; /* Usa toda a largura disponível em telas muito pequenas */
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .benefit-category:first-of-type .benefits-grid,
    .benefit-category:nth-of-type(2) .benefits-grid,
    .benefit-category:nth-of-type(4) .benefits-grid,
    #sebrae .benefits-grid {
        grid-template-columns: 1fr; /* 1 coluna em dispositivos móveis para todas as seções */
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card-hover);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-rainbow);
    transition: var(--transition-normal);
    transform: scaleX(0);
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    opacity: 0;
    z-index: 0;
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon-container {
    color: white;
    box-shadow: var(--shadow-blue);
    transform: rotateY(180deg);
}

.benefit-card:hover .benefit-icon-container::before {
    opacity: 1;
}

.benefit-icon-container i {
    position: relative;
    z-index: 1;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.benefit-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-tertiary));
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-title::after {
    width: 60px;
    background: var(--gradient-rainbow);
}

.benefit-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
    flex-grow: 1;
}

.category-alt {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.03), rgba(6, 214, 160, 0.03));
    box-shadow: var(--shadow-inner);
    position: relative;
    overflow: hidden;
}

.category-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, rgba(255, 87, 87, 0.1), transparent 300px),
        radial-gradient(circle at bottom left, rgba(131, 56, 236, 0.1), transparent 300px);
    z-index: -1;
}

/* INVESTIMENTO */
.investment-container {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.investment-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.1), transparent 70%);
    z-index: -1;
}

.investment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.1), transparent 70%);
    z-index: -1;
}

.investment-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.investment-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-rainbow);
}

.investment-price-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.03), rgba(131, 56, 236, 0.03));
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(26, 86, 219, 0.1);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.price-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-rainbow);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    color: white;
}

.price-card:hover::before {
    opacity: 1;
}

.price-card:hover::after {
    transform: scaleX(1);
}

.price-card:hover .price-label {
    color: white;
}

.price-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition-normal);
}

.price-card:hover .price-value {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.join-button {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-full);
    background: var(--gradient-accent-vibrant);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.join-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: var(--transition-slow);
}

.join-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.join-button:hover::before {
    left: 100%;
}

.join-button i {
    margin-right: 0.5rem;
}

/* FOOTER */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-rainbow);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 0.8rem;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-quaternary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-rainbow);
    border-radius: var(--border-radius-full);
}

.footer-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-info i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-rainbow);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
    color: white;
}

.footer-social-icon:hover {
    transform: translateY(-5px);
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* BOTÃO VOLTAR AO TOPO */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--gradient-primary-vibrant);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    text-align: center;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

/* Efeito Ripple para botões */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    z-index: 0;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* RESPONSIVIDADE */
/* MODIFICAÇÕES NO BANNER PARA MOBILE */
@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1rem 1.2rem; /* Aumentado o padding inferior */
    }
    
    .logo-container {
        margin-bottom: 0.5rem; /* Espaço extra abaixo do container de logo */
    }
        
    
    .system-buttons {
        flex: 1;
        justify-content: flex-end;
    }
    
    .system-button img {
        height: 30px;
    }
    
    .logo-social-icons {
        margin-top: 0.6rem; /* Espaço entre o logo e os ícones sociais */
        margin-bottom: 0.4rem; /* Espaço abaixo dos ícones sociais */
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    .banner-container {
        height: auto;
        min-height: 450px; /* Aumentar a altura mínima */
    }
    
    .banner {
        height: 100%;
        min-height: 450px; /* Garantir que o banner tenha altura suficiente */
        display: none;
    }
    
    .active-banner {
        display: block;
    }
    
    .banner-content {
        position: absolute;
        bottom: 10%; /* Posição mais baixa */
        left: 0;
        right: 0;
        width: 85%;
        margin: 0 auto;
        text-align: center;
        padding: 1.5rem;
        max-width: none;
        transform: none; /* Remover transformação que poderia estar causando problemas */
    }
    
    .banner-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .banner-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .banner-dots {
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.8rem 1rem 1.3rem; /* Ainda mais padding inferior */
    }
        
    .logo {
        height: 50px;
    }
    
    .system-button img {
        height: 25px;
    }
    
    .logo-social-icons {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .social-icon i {
        font-size: 0.9rem;
    }
    .banner-container {
        min-height: 350px;
    }
    
    .banner-content {
        padding: 1.2rem;
    }
    
    .banner-title {
        font-size: 1.4rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* AJUSTES NO VÍDEO DO YOUTUBE */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 97%;
    max-width: 97%;
    margin: 0 auto;
    z-index: 1; /* Garantir que esteja acima de outros elementos */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2; /* Maior que o container para garantir que os controles funcionem */
    pointer-events: auto !important; /* Forçar eventos de pointer */
}

/* AJUSTES NO BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Ajustes específicos para diferentes seções de benefícios */
@media (min-width: 992px) {
    /* Para a primeira categoria e a segunda categoria */
    .benefit-category:nth-of-type(1) .benefits-grid,
    .benefit-category:nth-of-type(2) .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    /* Para a seção de parceria com o Sebrae */
    #sebrae .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Para a seção de convênios */
    .benefit-category:nth-of-type(4) .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

/* MELHORIAS GERAIS PARA RESPONSIVIDADE */
@media (max-width: 992px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .social-icons {
        gap: 0.7rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .investment-price-container {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 300px;
    }
}

/* AJUSTES NO LAYOUT DO FOOTER PARA MOBILE */
@media (max-width: 768px) {
    .footer-content {
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* MELHORIAS PARA BOTÕES E INTERAÇÕES */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* ANIMAÇÕES MAIS SUAVES */
.benefit-card:hover {
    transform: translateY(-8px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* MELHORIAS NA ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}