/**
 * OnCabo Enhancements CSS
 * Estilos adicionais para novas seções
 */

/* ===================================
   HERO ENHANCEMENTS
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content h1 .highlight {
    color: var(--oncabo-green, #13fa1c);
    display: block;
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: linear-gradient(180deg, #F9FAFB 0%, #fff 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--oncabo-green, #13fa1c);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--oncabo-green, #13fa1c);
    display: block;
    font-family: 'Figtree', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #6B7280;
    font-weight: 500;
}

/* ===================================
   COMBO SECTION
   =================================== */
.combo-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

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

.combo-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.combo-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--oncabo-green, #13fa1c), #10d118);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: all 0.4s ease;
}

.combo-card:hover {
    border-color: var(--oncabo-green, #13fa1c);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.combo-card:hover::before {
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.combo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--oncabo-green, #13fa1c), #10d118);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.combo-icon svg {
    width: 64px !important;
    height: 64px !important;
    color: #ffffff;
}

.combo-card:hover .combo-icon {
    transform: scale(1.1) rotate(5deg);
}

.combo-title {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.combo-description {
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.combo-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.combo-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #374151;
    font-size: 0.938rem;
}

.combo-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--oncabo-green, #13fa1c);
    color: #111827;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.combo-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.combo-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 112, 0.1));
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--oncabo-green, #13fa1c);
    font-family: 'Figtree', sans-serif;
}

.price-period {
    font-size: 1rem;
    color: #6B7280;
}

/* ===================================
   DEPOIMENTOS SECTION
   =================================== */
.depoimentos-section {
    background: #F9FAFB;
    padding: 6rem 0;
}

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

.depoimento-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--oncabo-green, #13fa1c);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.depoimento-rating {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.depoimento-texto {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.depoimento-autor strong {
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.depoimento-autor span {
    color: #6B7280;
    font-size: 0.875rem;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: #fff;
    padding: 6rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--oncabo-green, #13fa1c);
}

.faq-item.active {
    border-color: var(--oncabo-green, #13fa1c);
    box-shadow: 0 4px 6px -1px rgba(0, 255, 136, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--oncabo-green, #13fa1c);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oncabo-green, #13fa1c);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ===================================
   COBERTURA SECTION
   =================================== */
.cobertura-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 6rem 0;
    color: #fff;
    text-align: center;
}

.cobertura-section .section-title,
.cobertura-section .section-subtitle {
    color: #fff;
}

.cobertura-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#cep-input {
    flex: 1;
    min-width: 250px;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.3s ease;
}

#cep-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#cep-input:focus {
    outline: none;
    border-color: var(--oncabo-green, #13fa1c);
    background: rgba(255, 255, 255, 0.15);
}

.cobertura-form .btn {
    min-width: 180px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2s infinite;
}

/* ===================================
   BENEFICIOS GRID ENHANCEMENT
   =================================== */
.beneficios-section {
    background: #fff;
    padding: 6rem 0;
}

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

.beneficio-card {
    background: #F9FAFB;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.beneficio-card:hover {
    background: #fff;
    border-color: var(--oncabo-green, #13fa1c);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--oncabo-green, #13fa1c), #10d118);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #111827;
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
}

.beneficio-titulo {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.beneficio-descricao {
    color: #6B7280;
    line-height: 1.6;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .combo-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .cobertura-form {
        flex-direction: column;
    }

    #cep-input,
    .cobertura-form .btn {
        width: 100%;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--oncabo-green, #13fa1c), #10d118);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.border-gradient {
    border-image: linear-gradient(135deg, var(--oncabo-green, #13fa1c), #10d118) 1;
}
