/*
====== CSS DO SITE INSTITUCIONAL - SENTINELA FINANCEIRO ======

SEPARADO DO SISTEMA PRINCIPAL
Seguindo racional de identidade visual do README-CUSTOMIZACAO.md
Mantendo consistência com cores e padrões do sistema
*/

/* ====== RESET E CONFIGURAÇÕES GERAIS ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* ====== CORES DA IDENTIDADE VISUAL (Seguindo padrões do sistema) ====== */
:root {
    /* Cores primárias do sistema */
    --bs-primary: #1A355E;
    --bs-secondary: #4A4A4A;
    --bs-success: #48bb78;
    --bs-warning: #ed8936;
    --bs-danger: #f56565;
    --bs-info: #17a2b8;
    
    /* Cores customizadas seguindo o padrão */
    --custom-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --custom-gradient-hero: linear-gradient(45deg, #1A355E 0%, #4A4A4A 100%);
    --custom-light-bg: #f8fafc;
    --custom-white: #ffffff;
    --custom-text-dark: #333333;
    --custom-text-light: #666666;
    --custom-border-color: #e2e8f0;
    --custom-form-border: #d1d5db;
}

/* ====== UTILITÁRIOS ====== */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-text-center {
    text-align: center;
}

/* ====== BOTÕES CUSTOMIZADOS ====== */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.custom-btn::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;
}

.custom-btn:hover::before {
    left: 100%;
}

.custom-btn-primary {
    background: var(--custom-gradient-primary);
    color: var(--custom-white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.custom-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.custom-btn-white {
    background: var(--custom-white);
    color: var(--bs-primary);
    border: 2px solid var(--custom-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.custom-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* ====== HEADER / NAVEGAÇÃO ====== */
.custom-header {
    background: var(--custom-gradient-hero);
    color: var(--custom-white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--custom-white);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--custom-white);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--custom-white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ====== REDES SOCIAIS NO HEADER ====== */
.header-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 1rem;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--custom-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-social-link i {
    font-size: 1.1rem;
}

/* Menu mobile simples */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--custom-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bs-primary);
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.mobile-menu a {
    color: var(--custom-white);
    padding: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--custom-white);
    text-decoration: none;
}

.mobile-menu-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    font-weight: 600;
}

/* ====== HERO SECTION ====== */
.custom-hero {
    background: var(--custom-gradient-hero);
    color: var(--custom-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.custom-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* Ícones de investimentos no background */
.custom-hero .investment-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.custom-hero .investment-icons .icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
    animation: float-icon 20s ease-in-out infinite;
    z-index: 2;
}

.custom-hero .investment-icons .icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 4rem;
}

.custom-hero .investment-icons .icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: -5s;
    font-size: 2.5rem;
}

.custom-hero .investment-icons .icon:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: -10s;
    font-size: 3.5rem;
}

.custom-hero .investment-icons .icon:nth-child(4) {
    bottom: 15%;
    right: 8%;
    animation-delay: -15s;
    font-size: 2.8rem;
}

.custom-hero .investment-icons .icon:nth-child(5) {
    top: 40%;
    left: 25%;
    animation-delay: -7s;
    font-size: 2rem;
}

.custom-hero .investment-icons .icon:nth-child(6) {
    top: 60%;
    right: 25%;
    animation-delay: -12s;
    font-size: 2.2rem;
}

.custom-hero .investment-icons .icon:nth-child(7) {
    top: 10%;
    left: 50%;
    animation-delay: -3s;
    font-size: 1.8rem;
}

.custom-hero .investment-icons .icon:nth-child(8) {
    bottom: 45%;
    right: 40%;
    animation-delay: -8s;
    font-size: 2.4rem;
}

@keyframes float-icon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-15px) rotate(2deg); 
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg); 
        opacity: 0.3;
    }
    75% { 
        transform: translateY(10px) rotate(1deg); 
        opacity: 0.2;
    }
}

/* Gradiente sutil para profundidade */
.custom-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}



.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

/* ====== SEÇÕES PRINCIPAIS ====== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--custom-light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--custom-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== FUNCIONALIDADES ====== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--custom-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--custom-border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--custom-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--custom-white);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--custom-text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ====== BENEFÍCIOS ====== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--custom-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--custom-gradient-primary);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: var(--bs-success);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--custom-text-light);
    line-height: 1.6;
}

/* ====== CONTATO ====== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--custom-light-bg);
    border-radius: 12px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--custom-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--custom-white);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--custom-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--custom-form-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--custom-white);
    color: var(--custom-text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(26, 53, 94, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--bs-primary);
    color: var(--custom-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-right-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--custom-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--custom-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
}

/* ====== REDES SOCIAIS NO FOOTER ====== */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--custom-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-link i {
    font-size: 1.3rem;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .header-social-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-right-sections {
        gap: 1.5rem;
    }

    .footer-social-links {
        justify-content: center;
    }

    .custom-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .custom-hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .custom-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ====== ANIMAÇÕES ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== SEÇÃO DE PREÇOS E PLANOS ====== */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-plan {
    background: var(--custom-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--custom-border-color);
    text-align: center;
}

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

.featured-plan {
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, rgba(26, 53, 94, 0.05) 0%, rgba(26, 53, 94, 0.02) 100%);
    transform: scale(1.05);
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.plan-header {
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--custom-text-dark);
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: var(--custom-text-light);
    font-size: 0.95rem;
}

.plan-pricing {
    margin-bottom: 1rem;
}

.total-price, .monthly-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--custom-border-color);
}

.monthly-price {
    border-bottom: none;
    font-weight: 600;
}

.total-price .label, .monthly-price .label {
    color: var(--custom-text-light);
    font-size: 0.95rem;
}

.total-price .price, .monthly-price .price {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.total-price .original {
    color: var(--custom-text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    font-weight: normal;
}

.savings {
    background: var(--bs-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-action {
    margin-top: 1.5rem;
}

/* Funcionalidades incluídas */
.features-included {
    background: var(--custom-light-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-included h4 {
    color: var(--custom-text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    text-align: left;
}

.feature-item i {
    color: var(--bs-success);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--custom-text-dark);
    font-weight: 500;
}

.pricing-guarantee {
    background: var(--custom-light-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--custom-border-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guarantee-icon {
    background: var(--bs-success);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    color: var(--custom-text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.guarantee-text p {
    color: var(--custom-text-light);
    margin: 0;
    font-size: 1rem;
}

/* Responsividade adicional para preços */
@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-plan {
        padding: 1.5rem;
    }
    
    .featured-plan {
        transform: none;
    }
    
    .featured-plan:hover {
        transform: translateY(-5px);
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ====== ESTILOS ADICIONAIS PARA PLANO MENSAL ====== */
/* Layout largura total */
.pricing-content-fullwidth {
    margin-bottom: 3rem;
}

/* Plano largura total */
.pricing-plan-fullwidth {
    background: var(--custom-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--bs-primary);
    background: linear-gradient(135deg, rgba(26, 53, 94, 0.05) 0%, rgba(26, 53, 94, 0.02) 100%);
    text-align: center;
    width: 100%;
}

.pricing-plan-fullwidth:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Informações de pagamento */
.payment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.payment-info .label {
    color: var(--custom-text-light);
    font-size: 1rem;
    font-weight: 500;
}

.payment-info .payment-method {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Box de benefícios interno */
.plan-benefits {
    margin: 1rem 0 1.5rem 0;
    padding: 2rem;
    background: rgba(26, 53, 94, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(26, 53, 94, 0.1);
    text-align: left;
}

.plan-benefits h4 {
    color: var(--bs-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.plan-benefits p {
    color: var(--custom-text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.benefit-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--custom-white);
    border-radius: 10px;
    border-top: 4px solid var(--bs-success);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item-pricing i {
    color: var(--bs-success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item-pricing span {
    color: var(--custom-text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.3;
}

.explanation-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.explanation-icon {
    background: var(--bs-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 53, 94, 0.3);
}

.explanation-text {
    flex: 1;
}

.explanation-text h4 {
    color: var(--bs-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.explanation-text p {
    color: var(--custom-text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.explanation-benefits {
    display: grid;
    gap: 1rem;
}

.explanation-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--custom-white);
    border-radius: 10px;
    border-left: 4px solid var(--bs-success);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.explanation-benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.explanation-benefit i {
    color: var(--bs-success);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.explanation-benefit span {
    color: var(--custom-text-dark);
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Responsividade para layout largura total */
@media (max-width: 768px) {
    .pricing-plan-fullwidth {
        padding: 2rem;
    }
    
    .plan-benefits {
        padding: 1.5rem;
    }
    
    .benefit-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .benefit-item-pricing {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .benefit-item-pricing:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .pricing-plan-fullwidth {
        padding: 1.5rem;
    }
    
    .plan-benefits {
        padding: 1.25rem;
    }
    
    .plan-benefits h4 {
        font-size: 1.2rem;
    }
    
    .plan-benefits p {
        font-size: 0.95rem;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefit-item-pricing {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .benefit-item-pricing span {
        font-size: 0.9rem;
    }
}

/* ====== SCROLL SMOOTH ====== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
