/* ===== CONTACTO TRANSFORMADO - DISEÑO TECNOLÓGICO ===== */

/* Variables del Contacto */
:root {
    --contact-primary: #00D4AA;
    --contact-secondary: #00B894;
    --contact-accent: #FF6B9D;
    --contact-dark: #1A1A2E;
    --contact-light: #F8F9FA;
    --contact-glow: #00D4AA;
    --contact-gradient: linear-gradient(135deg, #00D4AA, #00B894);
    --contact-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
    --contact-border: 2px solid rgba(0, 212, 170, 0.3);
}

/* ===== SECCIÓN CONTACTO TRANSFORMADA ===== */
.contact {
    position: relative;
    padding: 8rem 0;
    background: var(--contact-dark);
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}

/* ===== TÍTULO PRINCIPAL TRANSFORMADO ===== */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--contact-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 170, 0.6);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.contact-main-title .title-gradient {
    background: linear-gradient(135deg, var(--contact-primary), var(--contact-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.8));
}

.contact-main-subtitle {
    font-size: 1.8rem;
    color: var(--contact-light);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.contact-main-subtitle .subtitle-accent {
    color: var(--contact-accent);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.6);
    animation: subtitleGlow 4s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    0% { 
        filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.4));
        text-shadow: 0 0 20px rgba(255, 107, 157, 0.6);
    }
    100% { 
        filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.8));
        text-shadow: 0 0 30px rgba(255, 107, 157, 0.9);
    }
}

/* Fondo Tecnológico */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 170, 0.05) 50%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

/* Grid de Fondo */
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Contenedor Principal */
.contact-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* ===== HERO TRANSFORMADO ===== */
.contact-hero {
    text-align: center;
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background: rgba(0, 212, 170, 0.05);
    border: var(--contact-border);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.contact-hero-text {
    text-align: left;
}

.contact-hero-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 3rem;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--contact-light);
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.3);
    backdrop-filter: blur(10px);
}

.highlight-reason {
    font-size: 1.1rem;
    color: var(--contact-accent);
    font-style: italic;
    padding: 1rem 2rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    backdrop-filter: blur(10px);
}

/* ===== FEATURES TAGS ===== */
.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 30px;
    color: var(--contact-light);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.feature-tag:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: var(--contact-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.feature-tag i {
    color: var(--contact-accent);
    font-size: 1.2rem;
}

/* ===== ESTADÍSTICAS FLOTANTES ===== */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    position: relative;
    padding: 2rem;
    background: rgba(0, 212, 170, 0.1);
    border: var(--contact-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: -2s;
}

.stat-item:nth-child(3) {
    animation-delay: -4s;
}

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

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--contact-shadow);
    border-color: var(--contact-primary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--contact-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--contact-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== GRID DE CONTACTO ===== */
.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem;
    margin-top: 4rem;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}

/* DEBUG: Forzar ancho completo */
.contact-grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr 1fr !important;
}

.contact-grid > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* Forzar que las columnas ocupen todo el espacio disponible */
.contact-form-container,
.contact-info-container {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* ===== FORMULARIO TRANSFORMADO ===== */
.contact-form-container {
    background: rgba(0, 212, 170, 0.05);
    border: var(--contact-border);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--contact-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-form-container:hover::before {
    opacity: 0.05;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.contact-form-header h3 {
    color: var(--contact-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-form-header h3 i {
    color: var(--contact-accent);
    font-size: 1.8rem;
}

.contact-form-header p {
    color: var(--contact-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i {
    position: absolute;
    left: 1rem;
    color: var(--contact-primary);
    font-size: 1.2rem;
    z-index: 2;
}

.input-icon input,
.input-icon textarea {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 15px;
    color: var(--contact-light);
    font-size: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.input-icon input::placeholder,
.input-icon textarea::placeholder {
    color: rgba(248, 249, 250, 0.7);
}

.input-icon input:focus,
.input-icon textarea:focus {
    outline: none;
    border-color: var(--contact-primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.input-icon textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    position: relative;
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--contact-gradient);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.btn-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.5);
}

.btn-submit i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-glow {
    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.6s ease;
}

.btn-submit:hover .btn-glow {
    left: 100%;
}

/* ===== INFORMACIÓN DE CONTACTO TRANSFORMADA ===== */
.contact-info-container {
    background: rgba(0, 212, 170, 0.05);
    border: var(--contact-border);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.contact-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--contact-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-container:hover::before {
    opacity: 0.05;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.contact-info-header h3 {
    color: var(--contact-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-info-header h3 i {
    color: var(--contact-accent);
    font-size: 1.8rem;
}

.contact-info-header p {
    color: var(--contact-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-items-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--contact-primary);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--contact-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
}

.contact-details h4 {
    color: var(--contact-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--contact-light);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-role {
    color: var(--contact-accent);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

/* ===== CTA DE CONTACTO ===== */
.contact-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.contact-cta h4 {
    color: var(--contact-accent);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-cta p {
    color: var(--contact-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* ===== RESPONSIVIDAD ===== */

/* Pantallas grandes - escritorio */
@media (min-width: 1200px) {
    .contact-content {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .contact-hero {
        padding: 5rem 3rem;
    }
    
    .contact-hero-content {
        gap: 4rem;
    }
    
    .contact-grid {
        gap: 4rem;
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 1fr 1fr !important;
    }
    
    .contact-form-container,
    .contact-info-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* Pantallas extra grandes */
@media (min-width: 1600px) {
    .contact-content {
        max-width: 1600px;
        padding: 0 4rem;
    }
    
    .contact-hero {
        padding: 6rem 4rem;
    }
    
    .contact-hero-content {
        gap: 5rem;
    }
    
    .contact-grid {
        gap: 5rem;
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 1fr 1fr !important;
    }
    
    .contact-form-container,
    .contact-info-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-main-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-hero {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-hero-text {
        text-align: center;
    }
    
    .contact-features {
        justify-content: center;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem 1rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }
    
    .contact-content {
        padding: 0 0.75rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero {
        padding: 1.5rem 0.75rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero-content {
        gap: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .highlight-reason {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .feature-tag {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .contact-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem 0.75rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .contact-form-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.4rem;
    }
    
    .input-icon input,
    .input-icon textarea {
        padding: 1rem 0.75rem 1rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-role {
        font-size: 0.8rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
    }
    
    .contact-cta h4 {
        font-size: 1.2rem;
    }
    
    .contact-cta p {
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== REGLAS MÓVILES ESPECÍFICAS ===== */
/* Asegurar que en móvil el grid funcione correctamente */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .contact-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .contact-form-container,
    .contact-info-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden;
    }
    
    /* Corregir elementos internos de contacto */
    .contact-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 1rem !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .contact-details {
        flex: 1 !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-details h4,
    .contact-details p,
    .contact-role {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Asegurar que el botón de WhatsApp se vea completo */
    .btn-whatsapp {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Asegurar que el CTA se vea completo */
    .contact-cta {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .contact-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .contact-form-container,
    .contact-info-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden;
    }
    
    /* Corregir elementos internos de contacto en móviles pequeños */
    .contact-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 0.75rem !important;
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
    }
    
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
    }
    
    .contact-details {
        flex: 1 !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: calc(100% - 60px) !important;
    }
    
    .contact-details h4,
    .contact-details p,
    .contact-role {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        font-size: 0.9rem !important;
    }
    
    .contact-details h4 {
        font-size: 1rem !important;
    }
    
    /* Asegurar que el botón de WhatsApp se vea completo */
    .btn-whatsapp {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Asegurar que el CTA se vea completo */
    .contact-cta {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* ===== KEYFRAMES ADICIONALES ===== */
@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(0, 212, 170, 0.6)); }
}
