/* Estilos base */
.cta-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%232c3e50" fill-opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Tipografía */
.cta-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-subtitle {
    color: #5a6a7a;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-footer {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Botones */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.email-btn {
    background-color: #2c3e50;
    color: white;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.email-btn:hover {
    background-color: #1a252f;
}

/* Divisor */
.cta-divider {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cta-divider::before,
.cta-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #d5dbdb;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}