/* Control Parental - CSS */
/* SH COMPANY SAS - 2025 */

/* Variables CSS */
:root {
     --primary-color: #f25c05;
     --secondary-color: #e6671d;
     --success-color: #28a745;
     --info-color: #17a2b8;
     --warning-color: #ffc107;
     --danger-color: #dc3545;
     --purple-color: #6f42c1;
     --dark-color: #212529;
     --light-bg: #f8f9fa;
     --border-radius: 12px;
     --transition: all 0.3s ease;
     --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
     --shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-parental {
     position: relative;
     min-height: 100vh;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     overflow: hidden;
}

.hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
}

.hero-pattern {
     position: relative;
     width: 100%;
     height: 100%;
}

.pattern-shield {
     position: absolute;
     width: 100px;
     height: 100px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     opacity: 0.6;
     animation: floatShield 6s ease-in-out infinite;
}

.shield-1 {
     top: 10%;
     left: 10%;
     animation-delay: 0s;
}

.shield-2 {
     top: 20%;
     right: 15%;
     animation-delay: 2s;
}

.shield-3 {
     bottom: 20%;
     left: 20%;
     animation-delay: 4s;
}

.shield-4 {
     bottom: 15%;
     right: 10%;
     animation-delay: 1s;
}

@keyframes floatShield {

     0%,
     100% {
          transform: translateY(0px) rotate(0deg);
     }

     50% {
          transform: translateY(-20px) rotate(180deg);
     }
}

.hero-content {
     position: relative;
     z-index: 2;
     color: white;
}

.hero-badge {
     display: inline-flex;
     align-items: center;
     padding: 8px 16px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     backdrop-filter: blur(10px);
}

.hero-title {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1rem;
}

.title-highlight {
     color: #ffd700;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-main {
     color: white;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     color: rgba(255, 255, 255, 0.9);
}

.hero-description {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 2rem;
     color: rgba(255, 255, 255, 0.8);
}

/* Hero Features */
.hero-features {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-bottom: 2rem;
}

.feature-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: rgba(255, 255, 255, 0.1);
     border-radius: var(--border-radius);
     backdrop-filter: blur(10px);
}

.feature-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: #ffd700;
}

.feature-text strong {
     display: block;
     font-size: 1.1rem;
     margin-bottom: 0.25rem;
}

.feature-text span {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.8);
}

/* Hero Buttons */
.hero-buttons {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
     padding: 12px 24px;
     border-radius: var(--border-radius);
     font-weight: 600;
     text-decoration: none;
     transition: var(--transition);
     display: inline-flex;
     align-items: center;
}

.btn-hero-primary {
     background: var(--primary-color);
     color: white;
     border: 2px solid var(--primary-color);
}

.btn-hero-primary:hover {
     background: var(--secondary-color);
     border-color: var(--secondary-color);
     color: white;
     transform: translateY(-2px);
     box-shadow: var(--shadow-strong);
}

.btn-hero-secondary {
     background: transparent;
     color: white;
     border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.5);
     color: white;
     transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
     position: relative;
     z-index: 2;
}

.parental-dashboard {
     background: rgba(255, 255, 255, 0.95);
     border-radius: var(--border-radius);
     padding: 1.5rem;
     box-shadow: var(--shadow-strong);
     backdrop-filter: blur(20px);
}

.dashboard-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
     padding-bottom: 1rem;
     border-bottom: 2px solid #e9ecef;
}

.dashboard-header h4 {
     color: var(--dark-color);
     font-weight: 700;
     margin: 0;
}

.status-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--success-color);
     position: relative;
}

.status-indicator.active::before {
     content: '';
     position: absolute;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background: var(--success-color);
     opacity: 0.3;
     animation: pulse 2s infinite;
}

@keyframes pulse {
     0% {
          transform: scale(1);
          opacity: 0.3;
     }

     50% {
          transform: scale(1.5);
          opacity: 0.1;
     }

     100% {
          transform: scale(1);
          opacity: 0.3;
     }
}

/* Control Sections */
.control-sections {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-bottom: 1.5rem;
}

.control-section {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: #f8f9fa;
     border-radius: 8px;
     border-left: 4px solid var(--primary-color);
}

.section-icon {
     width: 40px;
     height: 40px;
     background: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
}

.section-info h5 {
     font-size: 1rem;
     font-weight: 600;
     margin: 0 0 0.25rem 0;
     color: var(--dark-color);
}

.section-info p {
     font-size: 0.85rem;
     color: #6c757d;
     margin: 0 0 0.5rem 0;
}

.status-badge {
     padding: 0.25rem 0.5rem;
     border-radius: 12px;
     font-size: 0.75rem;
     font-weight: 600;
}

.status-badge.active {
     background: rgba(40, 167, 69, 0.2);
     color: var(--success-color);
}

.status-badge.warning {
     background: rgba(255, 193, 7, 0.2);
     color: #856404;
}

/* Family Devices */
.family-devices h6 {
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: var(--dark-color);
}

.devices-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 0.75rem;
}

.device-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
     padding: 0.75rem;
     background: white;
     border-radius: 8px;
     border: 1px solid #e9ecef;
     font-size: 0.8rem;
     text-align: center;
}

.device-item i {
     font-size: 1.5rem;
     color: var(--primary-color);
}

/* Feature Cards */
.feature-card {
     background: white;
     border-radius: var(--border-radius);
     padding: 2rem;
     box-shadow: var(--shadow-soft);
     transition: var(--transition);
     border: 1px solid #e9ecef;
}

.feature-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-strong);
}

.feature-icon-large {
     text-align: center;
     margin-bottom: 1.5rem;
}

.feature-icon-large i {
     font-size: 3rem;
}

.feature-list {
     list-style: none;
     padding: 0;
     margin: 0;
}

.feature-list li {
     padding: 0.5rem 0;
     font-size: 0.9rem;
}

/* Configuration Steps */
.configuration-steps {
     position: relative;
}

.configuration-steps::before {
     content: '';
     position: absolute;
     left: 30px;
     top: 60px;
     bottom: 60px;
     width: 2px;
     background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.step-item {
     display: flex;
     gap: 2rem;
     margin-bottom: 3rem;
     position: relative;
}

.step-number {
     width: 60px;
     height: 60px;
     background: var(--primary-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: 700;
     flex-shrink: 0;
     position: relative;
     z-index: 2;
}

.step-content {
     flex: 1;
     background: white;
     padding: 1.5rem;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-soft);
     border-left: 4px solid var(--primary-color);
}

.step-content h5 {
     color: var(--dark-color);
     margin-bottom: 1rem;
}

.profile-examples {
     margin-top: 1rem;
}

.monitoring-features {
     margin-top: 1rem;
}

/* Legal Card */
.legal-card {
     background: rgba(40, 167, 69, 0.05);
     border: 2px solid rgba(40, 167, 69, 0.2);
     border-radius: var(--border-radius);
     padding: 2rem;
}

/* Contact Card */
.contact-card {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 3rem 2rem;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-strong);
}

.contact-options {
     display: flex;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap;
}

.support-hours {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     padding: 1rem;
     backdrop-filter: blur(10px);
}

/* Purple color utility */
.text-purple {
     color: var(--purple-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
     .hero-title {
          font-size: 2.5rem;
     }

     .hero-subtitle {
          font-size: 1.2rem;
     }

     .hero-features {
          gap: 0.75rem;
     }

     .feature-item {
          padding: 0.75rem;
     }

     .hero-buttons {
          flex-direction: column;
     }

     .btn-hero-primary,
     .btn-hero-secondary {
          text-align: center;
          justify-content: center;
     }

     .configuration-steps::before {
          left: 20px;
     }

     .step-number {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
     }

     .step-item {
          gap: 1rem;
     }

     .devices-grid {
          grid-template-columns: repeat(2, 1fr);
     }

     .contact-options {
          flex-direction: column;
          align-items: center;
     }

     .contact-options .btn {
          width: 100%;
          max-width: 280px;
     }
}

@media (max-width: 576px) {
     .hero-title {
          font-size: 2rem;
     }

     .parental-dashboard {
          padding: 1rem;
     }

     .control-section {
          flex-direction: column;
          text-align: center;
          gap: 0.75rem;
     }

     .devices-grid {
          grid-template-columns: 1fr;
     }

     .feature-card {
          padding: 1.5rem;
     }

     .step-content {
          padding: 1rem;
     }
}

/* Animation Utilities */
.fade-in {
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.6s ease;
}

.fade-in.visible {
     opacity: 1;
     transform: translateY(0);
}

/* Accordion Customization */
.accordion-button {
     background: var(--light-bg);
     border: none;
     font-weight: 600;
}

.accordion-button:not(.collapsed) {
     background: var(--primary-color);
     color: white;
}

.accordion-button:focus {
     box-shadow: 0 0 0 0.25rem rgba(242, 92, 5, 0.25);
     border-color: var(--primary-color);
}

.accordion-item {
     border: 1px solid rgba(242, 92, 5, 0.2);
     margin-bottom: 1rem;
     border-radius: var(--border-radius);
     overflow: hidden;
}

/* Form Enhancements */
.btn-outline-primary:hover,
.btn-outline-secondary:hover {
     transform: translateY(-2px);
     transition: var(--transition);
}

/* Loading Animation */
@keyframes spin {
     0% {
          transform: rotate(0deg);
     }

     100% {
          transform: rotate(360deg);
     }
}

.loading {
     animation: spin 1s linear infinite;
}

/* Hover Effects */
.feature-card,
.step-content,
.legal-card {
     position: relative;
     overflow: hidden;
}

.feature-card::before,
.step-content::before,
.legal-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transition: left 0.5s;
}

.feature-card:hover::before,
.step-content:hover::before,
.legal-card:hover::before {
     left: 100%;
}

/* Print Styles */
@media print {

     .hero-parental,
     .hero-background,
     nav,
     footer {
          display: none !important;
     }

     .container {
          max-width: none !important;
          padding: 0 !important;
     }

     .feature-card,
     .step-content,
     .legal-card {
          box-shadow: none !important;
          border: 1px solid #ddd !important;
     }
}

/* Nuevo Diseño Visual - Ilustración de Familia Protegida */
.parental-illustration {
     position: relative;
     width: 100%;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
}

.family-protection-graphic {
     position: relative;
     width: 300px;
     height: 300px;
     display: flex;
     align-items: center;
     justify-content: center;
}

.protection-shield {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 120px;
     height: 120px;
     background: linear-gradient(135deg, var(--success-color), var(--info-color));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 3;
     animation: pulseShield 3s ease-in-out infinite;
     box-shadow: 0 0 30px rgba(40, 167, 69, 0.4);
}

.protection-shield i {
     font-size: 3rem;
     color: white;
}

@keyframes pulseShield {

     0%,
     100% {
          transform: translate(-50%, -50%) scale(1);
          box-shadow: 0 0 30px rgba(40, 167, 69, 0.4);
     }

     50% {
          transform: translate(-50%, -50%) scale(1.1);
          box-shadow: 0 0 50px rgba(40, 167, 69, 0.6);
     }
}

.family-icons {
     position: relative;
     width: 100%;
     height: 100%;
}

.family-member {
     position: absolute;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
     padding: 10px;
     background: rgba(255, 255, 255, 0.9);
     border-radius: 15px;
     box-shadow: var(--shadow-soft);
     animation: floatMember 4s ease-in-out infinite;
     transition: var(--transition);
}

.family-member:hover {
     transform: scale(1.1);
     box-shadow: var(--shadow-strong);
}

.family-member.parent {
     background: linear-gradient(135deg, #667eea, #764ba2);
     color: white;
}

.family-member.child {
     background: linear-gradient(135deg, #ffecd2, #fcb69f);
     color: var(--dark-color);
}

.family-member:nth-child(1) {
     top: 0;
     left: 30%;
     animation-delay: 0s;
}

.family-member:nth-child(2) {
     top: 0;
     right: 30%;
     animation-delay: 1s;
}

.family-member:nth-child(3) {
     bottom: 0;
     left: 20%;
     animation-delay: 2s;
}

.family-member:nth-child(4) {
     bottom: 0;
     right: 20%;
     animation-delay: 3s;
}

.family-member i {
     font-size: 1.5rem;
     margin-bottom: 5px;
}

.family-member span {
     font-size: 0.8rem;
     font-weight: 600;
}

@keyframes floatMember {

     0%,
     100% {
          transform: translateY(0px);
     }

     50% {
          transform: translateY(-10px);
     }
}

/* Elementos flotantes de consejos */
.floating-tips {
     position: absolute;
     width: 100%;
     height: 100%;
     pointer-events: none;
}

.tip-bubble {
     position: absolute;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
     padding: 12px;
     background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
     box-shadow: var(--shadow-soft);
     animation: floatTip 5s ease-in-out infinite;
     border: 2px solid var(--primary-color);
}

.tip-bubble i {
     font-size: 1.2rem;
     color: var(--primary-color);
}

.tip-bubble span {
     font-size: 0.7rem;
     font-weight: 600;
     color: var(--dark-color);
}

.tip-1 {
     top: 20%;
     left: 5%;
     animation-delay: 0s;
}

.tip-2 {
     top: 60%;
     left: 5%;
     animation-delay: 1.5s;
}

.tip-3 {
     top: 20%;
     right: 5%;
     animation-delay: 3s;
}

.tip-4 {
     top: 60%;
     right: 5%;
     animation-delay: 4.5s;
}

@keyframes floatTip {

     0%,
     100% {
          transform: translateY(0px) rotate(0deg);
          opacity: 0.8;
     }

     50% {
          transform: translateY(-15px) rotate(5deg);
          opacity: 1;
     }
}

/* Estadísticas visuales */
.safety-stats {
     position: absolute;
     bottom: -50px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 30px;
}

.stat-circle {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--warning-color), var(--primary-color));
     border-radius: 50%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: bold;
     animation: rotateStat 6s linear infinite;
     box-shadow: 0 4px 15px rgba(242, 92, 5, 0.3);
}

.stat-number {
     font-size: 1rem;
     line-height: 1;
}

.stat-label {
     font-size: 0.6rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}

@keyframes rotateStat {
     0% {
          transform: rotate(0deg);
     }

     100% {
          transform: rotate(360deg);
     }
}

/* Responsive Design para la nueva ilustración */
@media (max-width: 992px) {
     .parental-illustration {
          height: 400px;
          margin-top: 50px;
     }

     .family-protection-graphic {
          width: 250px;
          height: 250px;
     }

     .protection-shield {
          width: 100px;
          height: 100px;
     }

     .protection-shield i {
          font-size: 2.5rem;
     }

     .safety-stats {
          position: relative;
          bottom: 0;
          margin-top: 30px;
     }
}

@media (max-width: 576px) {
     .parental-illustration {
          height: 350px;
     }

     .family-protection-graphic {
          width: 200px;
          height: 200px;
     }

     .protection-shield {
          width: 80px;
          height: 80px;
     }

     .protection-shield i {
          font-size: 2rem;
     }

     .family-member {
          padding: 8px;
     }

     .family-member i {
          font-size: 1.2rem;
     }

     .tip-bubble {
          padding: 8px;
     }

     .stat-circle {
          width: 60px;
          height: 60px;
     }

     .stat-number {
          font-size: 0.8rem;
     }

     .stat-label {
          font-size: 0.5rem;
     }
}

/* Mejoras adicionales para el hero section */
.hero-content {
     position: relative;
     z-index: 2;
     color: white;
}

.hero-title {
     text-align: center;
     margin-bottom: 1.5rem;
}

.hero-subtitle {
     text-align: center;
     margin-bottom: 1.5rem;
}

.hero-description {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.7;
     margin-bottom: 2rem;
}

.hero-features {
     margin-bottom: 2rem;
}

/* Mejoras para las tarjetas de características */
.feature-list {
     text-align: left;
     list-style: none;
     padding: 0;
}

.feature-list li {
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
}

/* Centrado perfecto para elementos de estadísticas */
.safety-stats {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 20px;
}

.stat-circle {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
}

/* Justificación de texto para párrafos largos */
.text-justify {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.6;
}

/* Centrado perfecto para títulos y subtítulos */
.text-center-improved {
     text-align: center;
     display: block;
     margin: 0 auto;
}

/* Mejora para el centrado de elementos flexibles */
.flex-center-perfect {
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
}

/* Justificación para contenido educativo */
.educational-content p {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.7;
     margin-bottom: 1.2rem;
}

/* Centrado mejorado para las tarjetas de características */
.feature-card {
     text-align: center;
}

.feature-card h5 {
     text-align: center;
     margin-bottom: 1rem;
}

.feature-card p {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.6;
}

/* Excepción para la tarjeta de Señales de Alerta */
.feature-card:has(i.bi-exclamation-triangle-fill) p,
.feature-card:last-child p {
     text-align: left;
}

/* Centrado para iconos y elementos visuales */
.feature-icon-large {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 1rem;
}

/* Mejora para la sección legal */
.legal-card p {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.7;
}

/* Centrado para botones de acción */
.hero-buttons {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-top: 2rem;
}

.contact-options {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
}

/* Justificación para secciones de consejos */
.step-content p {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.6;
}

/* Centrado para acordeón de FAQ */
.accordion-body {
     text-align: justify;
     text-justify: inter-word;
     line-height: 1.6;
}

/* Mejoras responsive para centrado */
@media (max-width: 768px) {
     .hero-buttons {
          flex-direction: column;
          align-items: center;
     }

     .contact-options {
          flex-direction: column;
     }

     .text-center-mobile {
          text-align: center !important;
     }
}

/* ===== NUEVA SECCIÓN DE CONTACTO MEJORADA ===== */

.enhanced-contact-section {
     position: relative;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 20px;
     overflow: hidden;
     margin: 4rem 0;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0.1;
     z-index: 1;
}

.contact-pattern {
     position: relative;
     width: 100%;
     height: 100%;
}

.floating-icon {
     position: absolute;
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: floatContactIcon 8s ease-in-out infinite;
}

.floating-icon i {
     font-size: 1.5rem;
     color: white;
}

.icon-1 {
     top: 15%;
     left: 5%;
     animation-delay: 0s;
}

.icon-2 {
     top: 25%;
     right: 10%;
     animation-delay: 2s;
}

.icon-3 {
     bottom: 30%;
     left: 8%;
     animation-delay: 4s;
}

.icon-4 {
     bottom: 15%;
     right: 5%;
     animation-delay: 6s;
}

@keyframes floatContactIcon {

     0%,
     100% {
          transform: translateY(0px) rotate(0deg);
          opacity: 0.6;
     }

     50% {
          transform: translateY(-15px) rotate(180deg);
          opacity: 1;
     }
}

.enhanced-contact-section .container {
     position: relative;
     z-index: 2;
     padding: 4rem 1rem;
}

/* Información de contacto */
.contact-info {
     color: white;
     padding-right: 2rem;
}

.contact-badge {
     display: inline-flex;
     align-items: center;
     background: rgba(255, 255, 255, 0.2);
     padding: 0.5rem 1rem;
     border-radius: 25px;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     backdrop-filter: blur(10px);
}

.contact-title {
     font-size: 2.5rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 1.5rem;
}

.text-gradient {
     background: linear-gradient(45deg, #ffd700, #ff6b6b);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}

.contact-description {
     font-size: 1.1rem;
     line-height: 1.7;
     margin-bottom: 2rem;
     opacity: 0.95;
}

.support-features {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}

.feature-row {
     display: flex;
     align-items: center;
     gap: 1rem;
}

.feature-row .feature-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(10px);
}

.feature-row .feature-icon i {
     font-size: 1.2rem;
}

.feature-row .feature-content {
     display: flex;
     flex-direction: column;
}

.feature-row .feature-content strong {
     font-size: 1rem;
     margin-bottom: 0.2rem;
}

.feature-row .feature-content span {
     font-size: 0.9rem;
     opacity: 0.8;
}

/* Tarjeta de contacto mejorada */
.contact-card-enhanced {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
     padding: 2rem;
     backdrop-filter: blur(20px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-header {
     text-align: center;
     margin-bottom: 2rem;
}

.contact-main-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
}

.contact-header h4 {
     color: var(--dark-color);
     font-weight: 700;
     margin-bottom: 0.5rem;
}

.contact-header p {
     color: #6c757d;
     margin-bottom: 0;
}

/* Métodos de contacto */
.contact-methods {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-bottom: 2rem;
}

.contact-method {
     display: flex;
     align-items: center;
     padding: 1.2rem;
     border-radius: 15px;
     text-decoration: none;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     position: relative;
     overflow: hidden;
}

.contact-method::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
}

.contact-method:hover::before {
     left: 100%;
}

.whatsapp-method {
     background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
     color: white;
}

.whatsapp-method:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
     color: white;
}

.phone-method {
     background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
     color: white;
}

.phone-method:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
     color: white;
}

.email-method {
     background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
     color: white;
}

.email-method:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
     color: white;
}

.method-icon {
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1rem;
     flex-shrink: 0;
}

.method-icon i {
     font-size: 1.5rem;
}

.method-content {
     flex: 1;
}

.method-content h5 {
     font-weight: 700;
     margin-bottom: 0.3rem;
     font-size: 1.1rem;
}

.method-content span {
     display: block;
     font-size: 0.9rem;
     opacity: 0.9;
     margin-bottom: 0.2rem;
}

.method-content small {
     font-size: 0.8rem;
     opacity: 0.8;
}

.method-arrow {
     margin-left: 1rem;
     transition: transform 0.3s ease;
}

.contact-method:hover .method-arrow {
     transform: translateX(5px);
}

.method-arrow i {
     font-size: 1.2rem;
}

/* Footer de contacto */
.contact-footer {
     border-top: 1px solid #e9ecef;
     padding-top: 1.5rem;
}

.schedule-info {
     margin-bottom: 1rem;
}

.schedule-item {
     display: flex;
     align-items: center;
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
     color: #495057;
}

.emergency-contact {
     background: #fff3cd;
     border: 1px solid #ffeaa7;
     border-radius: 8px;
     padding: 0.8rem;
     display: flex;
     align-items: flex-start;
     gap: 0.5rem;
}

.emergency-contact small {
     color: #856404;
     line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
     .contact-info {
          padding-right: 0;
          margin-bottom: 3rem;
          text-align: center;
     }

     .contact-title {
          font-size: 2rem;
     }

     .support-features {
          align-items: center;
     }
}

@media (max-width: 768px) {
     .enhanced-contact-section .container {
          padding: 2rem 1rem;
     }

     .contact-title {
          font-size: 1.8rem;
     }

     .contact-method {
          padding: 1rem;
     }

     .method-icon {
          width: 50px;
          height: 50px;
     }

     .method-content h5 {
          font-size: 1rem;
     }
}