/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Cores da Cleef */
:root {
    --primary-green: #00FF66;
    --dark-green: #1B5E20;
    --light-green: #E8F5E8;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #BDBDBD;
    --gray-700: #424242;
    --gray-900: #212121;
    --whatsapp: #25D366;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-green);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 255, 102, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.4);
    background: linear-gradient(135deg, #00FF80, #0D4F1C);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s;
}

.btn-outline {
    background: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
}

.btn-outline:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-green), var(--white));
    padding: 140px 0 80px; /* Aumentado o padding-top para mobile */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

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

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

.hero-illustration {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.hero-icon-card {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.hero-icon-card i {
    font-size: 4.5rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
    position: absolute;
    opacity: 1;
}

.hero-icon-card .hero-icon-text {
    position: absolute;
    color: var(--dark-green);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 15px;
    line-height: 1.3;
    opacity: 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.hero-icon-card:hover i {
    opacity: 0;
    transform: scale(0.8);
}

.hero-icon-card:hover .hero-icon-text {
    opacity: 1;
    transform: scale(1);
}

/* Como Funciona */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--gray-100);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

/* Benefícios */
.benefits {
    padding: 80px 0;
    background: var(--light-green);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

/* Simulador */
.simulator {
    padding: 80px 0;
    background: var(--white);
}

.simulator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.simulator-form {
    background: var(--gray-100);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-green);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.resultado-economia {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-green);
}

.economia-valor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
}

.economia-percentual {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.economia-reais {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-green);
}

.economia-periodo {
    color: var(--gray-700);
    margin-top: 0.5rem;
}

/* CTA Principal */
.main-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
    text-align: center;
}

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

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

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--gray-100);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.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: var(--light-green);
}

.faq-question h3 {
    color: var(--dark-green);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        flex-direction: row; /* Mantém em linha para mobile */
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    
    .nav-actions {
        display: none; /* Oculta os botões do cabeçalho em mobile */
    }
    
    .hero {
        padding: 100px 0 60px; /* Reduzido o padding-top já que não há mais botões no header */
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-illustration {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero-illustration i {
        font-size: 2.5rem;
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .simulator-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Melhorias específicas para mobile */
    .main-cta {
        padding: 60px 0;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .benefits {
        padding: 60px 0;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .simulator {
        padding: 60px 0;
    }
}


/* Estilos para os resultados do simulador */
.resultado-simulador {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow);
    animation: slideUp 0.5s ease-out;
}

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

.resultado-sucesso {
    background: linear-gradient(135deg, #E8F5E8, #F0FFF0);
    border: 2px solid var(--primary-green);
    text-align: center;
}

.resultado-fila {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border: 2px solid #FFC107;
    text-align: center;
}

.resultado-sucesso h3,
.resultado-fila h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.resultado-sucesso p,
.resultado-fila p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.economia-destaque {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.economia-destaque h4 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.economia-valor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.economia-valor .percentual {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.economia-valor .valor-anual {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-green);
}

.economia-valor .periodo {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.resultado-simulador .btn {
    margin-top: 1.5rem;
    min-width: 200px;
}

/* Responsividade para os resultados */
@media (max-width: 768px) {
    .resultado-simulador {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .economia-valor .percentual {
        font-size: 2rem;
    }
    
    .economia-valor .valor-anual {
        font-size: 1.5rem;
    }
    
    .resultado-simulador .btn {
        width: 100%;
        margin-top: 1rem;
    }
}



/* Seção Clientes/Parceiros */
.parceiros {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

.parceiros-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.parceiro-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.parceiro-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.parceiro-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #f8f9fa;
    padding: 8px;
}

.parceiro-nome {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    line-height: 1.3;
}

/* Responsividade para parceiros */
@media (max-width: 768px) {
    .parceiros {
        padding: 60px 0;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }
    
    .parceiro-item {
        padding: 20px 10px;
    }
    
    .parceiro-logo {
        width: 80px;
        height: 80px;
    }
    
    .parceiro-nome {
        font-size: 0.9rem;
    }
}



.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
    appearance: none; /* Remove default system styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300FF66%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13.2-6.4H18.6c-5%200-9.3%201.8-13.2%206.4-3.9%204.6-5.9%2010.1-5.9%2016.3%200%206.2%202%2011.7%205.9%2016.3l124.6%20124.6c4.6%204.6%2010.1%206.9%2016.3%206.9s11.7-2.3%2016.3-6.9L287%20102c3.9-4.6%205.9-10.1%205.9-16.3s-2-11.7-5.9-16.3z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}



/* Demonstrativo de Cliente */
.demonstrativo {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.demonstrativo-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.demonstrativo-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    text-align: left;
}

.highlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-description {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-highlight {
    font-size: 1.2rem;
    padding: 18px 35px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.3);
}

.btn-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 102, 0.4);
}

.demonstrativo-image-container {
    text-align: center;
}

.demonstrativo-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.demonstrativo-image:hover {
    transform: scale(1.02);
}

.demonstrativo-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    margin: 0;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .demonstrativo {
        padding: 60px 0;
    }
    
    .demonstrativo-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .demonstrativo-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .highlight-text {
        text-align: center;
    }
    
    .highlight-title {
        font-size: 1.8rem;
    }
    
    .highlight-description {
        font-size: 1.1rem;
    }
    
    .btn-highlight {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .demonstrativo-message {
        font-size: 1.1rem;
        padding: 15px;
    }
}



/* Chamada para Instagram */
.instagram-cta {
    padding: 80px 0;
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
}

.instagram-cta .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.instagram-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.instagram-button-container {
    display: flex;
    justify-content: center;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: var(--white);
}

.btn-instagram i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .instagram-cta {
        padding: 60px 0;
    }
    
    .instagram-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-instagram {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

