body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}

@media (max-width: 600px) {
    body {
      background-color: lightblue;
    }
  }
  /* Estilos para pantallas medianas con cartas responisvas */
  @media (min-width: 601px) and (max-width: 1024px) {
    body {
      background-color: lightgreen;
    }
  }
  @media (min-width: 1025px) {
    body {
      background-color: rgb(178, 178, 178);
    }
  }
  

   .top-nav {
    background-color: #000000;
    color: #d1d4d9;
    padding: 8px 8px;
    text-align: center;
    font-size: 0.9em;
    position: fixed;
    width: 99%;
    top: 0;
    z-index: 20;
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav span {
    margin-right: auto;
}

.social-icons a {
    color: #0dff00;
    margin-left: 10px;
    text-decoration: none;
    font-size: 1.7em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #44ff00;
}

.navbar {
    margin-top: 40px; 
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d3d3d3;
    padding: 10px 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 20px rgba(11, 39, 68, 0.413);
    transition: background-color 0.3s;
}

.navbar:hover {
    background-color: #f6fbff;
}

.logo img {
    height: 50px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.0);
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

.menu a:hover {
    color: #ffffff;
    background-color: #000000;
    border-radius: 10px;
    transform: translateY(-3px);
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff6f6;
    margin: 4px 0;
    transition: transform 0.3s;
}

.menu-toggle:hover .bar {
    transform: scaleX(1.2);
}

.simple-help-section {
    padding: 80px 20px;
    background: #1c355b;
}

.simple-help-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(100, 180, 255, 0.1);
}

.simple-help-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.divider {
    width: 80px;
    height: 3px;
    background: #d7d7d7;
    margin: 0 auto 30px;
}

.simple-help-container p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.experience {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(100, 255, 218, 0.1);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 9px solid #215a9b;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-help-section {
        padding: 60px 15px;
    }
    
    .simple-help-container {
        padding: 30px;
    }
    
    .simple-help-container h2 {
        font-size: 2rem;
    }
    
    .simple-help-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .simple-help-container h2 {
        font-size: 1.6rem;
    }
    
    .divider {
        margin-bottom: 20px;
    }
    
    .experience {
        font-size: 0.8rem;
    }
}


/* Estilos para la sección de ubicaciones */
.locations-container {
    padding: 50px 20px;
    background: linear-gradient(135deg, #89a4bf 0%, #e9ecef 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: rgb(238, 235, 235);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-title {
    padding: 20px;
    margin: 0;
    color: #000000;
    font-size: 1.4rem;
    text-align: center;
    border-bottom: 1px solid #000000;
}

.location-image {
    position: relative;
    width: 100%;
    height: 250px;
    cursor: pointer;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(25, 58, 103, 0.8);
    border-radius: 30px;
}


.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease forwards;
    overflow-y: auto;
    padding: 2rem;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 550px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(3, 113, 216);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    margin: auto;
}

@keyframes slideUp {
    from { 
        transform: translateY(20px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 10rem;
    line-height: 1;
    cursor: pointer;
    color: #d32f2f;
    transition: all 0.2s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover, 
.modal-close:focus {
    color: #ffffff;
    background-color: #ff0808;
    outline: none;
}

.modal-content h3 {
    color: #1a365d;
    margin: 0 0 1.5rem 0;
    font-size: 1.75rem;
    text-align: center;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-details {
    margin-top: 1.5rem;
}

.modal-details p {
    margin: 0 0 1.25rem 0;
    color: #2d3748;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.modal-details i {
    margin-right: 0.75rem;
    color: #2b6cb0;
    width: 1.25rem;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.modal-details iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgb(53, 90, 124);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #ff0808;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 1.6rem;
    text-align: center;
}

.modal-details {
    margin-top: 20px;
}

.modal-details p {
    margin: 15px 0;
    color: #000000;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.modal-details i {
    margin-right: 10px;
    color: #193a67;
    width: 20px;
    text-align: center;
} 






.contact-section {
    background: #0a192f;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(46, 110, 184) 0%, transparent 50%);
    z-index: 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(21, 44, 77, 0.8);
    border-radius: 0;
    box-shadow: 0 10px 40px rgb(32, 78, 116);
    border: 1px solid rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.contact-header {
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid rgb(33, 85, 128);
}

.contact-header h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subtitle {
    margin: 15px 0 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
}

.header-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #4379cb);
    margin: 20px auto 0;
}

/* Estilos generales del formulario */
/* Estilos generales del formulario */
form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(10, 35, 66, 0.9); /* Azul profundo con transparencia */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(46, 196, 182, 0.3); /* Borde verde esmeralda sutil */
    backdrop-filter: blur(8px);
}

/* Estructura de filas */
.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

/* Cajas de entrada */
.nombre-box, .correo-box, 
.tel-box, .compania-box,
.estado-box, .razon-box {
    position: relative;
}

.comentario-box {
    grid-column: span 2;
    position: relative;
}

/* Etiquetas */
label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #FDFFFC; /* Blanco humo */
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Campos de entrada */
input, select, textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #969696; /* Blanco humo */
    border-bottom: 1px solid rgba(46, 196, 182, 0.3); /* Verde esmeralda sutil */
    transition: all 0.3s ease;
}

/* Placeholders */
::placeholder {
    color: #7A93AC; /* Azul grisáceo claro */
    opacity: 0.7;
}

/* Efecto de focus */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom-color: #1c4dff; /* Dorado */
}

/* Decoración animada para inputs */
.nombre-box::after, .correo-box::after,
.tel-box::after, .compania-box::after,
.estado-box::after, .razon-box::after,
.comentario-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1c64ff; /* Dorado */
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nombre-box:focus-within::after, 
.correo-box:focus-within::after,
.tel-box:focus-within::after, 
.compania-box:focus-within::after,
.estado-box:focus-within::after, 
.razon-box:focus-within::after,
.comentario-box:focus-within::after {
    width: 100%;
}

/* Select personalizado */
.estado-box {
    position: relative;
}

.estado-box::before {
    content: '▼';
    position: absolute;
    right: 0;
    bottom: 15px;
    color: #505a5f; /* Verde esmeralda */
    pointer-events: none;
    font-size: 0.8rem;
}

select {
    appearance: none;
    padding-right: 25px;
    cursor: pointer;
}

/* Área de texto */
textarea {
    min-height: 150px;
    resize: vertical;
    background: rgba(5, 10, 26, 0.3); /* Fondo azul muy oscuro */
    padding: 15px;
    border-radius: 4px;
}

/* Botón de enviar */
.Enviar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border: none;
    background: linear-gradient(135deg, #3d73d0, #2bad82); /* Verde esmeralda degradado */
    color: #050A1A; /* Azul muy oscuro */
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}

/* Estilo base del botón */
.Enviar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border: none;
    background: linear-gradient(135deg, #1a3a8f, #3a7bd5); /* Azul marino a azul claro */
    color: white;
    font-size: 1rem;
    font-weight: 800; /* Más grueso para mayor impacto */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(26, 58, 143, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Efecto hover más impactante */
.Enviar:hover {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff); /* Azul claro a azul cielo */
    color: white;
    box-shadow: 0 6px 25px rgba(0, 210, 255, 0.6);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    animation: pulse 1.5s infinite alternate;
}

/* Efecto de pulsación */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(58, 123, 213, 0.7);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(58, 123, 213, 0);
    }
}

/* Efecto al hacer clic */
.Enviar:active {
    transform: translateY(1px);
    background: linear-gradient(135deg, #1a3a8f, #1a3a8f);
    box-shadow: 0 2px 10px rgba(26, 58, 143, 0.8);
}

/* Efecto de "aura" al pasar el mouse */
.Enviar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    z-index: -1;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Enviar:hover::before {
    opacity: 0.4;
    animation: aura 2s infinite;
}

@keyframes aura {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Validación visual (manteniendo tu estilo) */
input:required:valid, select:required:valid {
    border-bottom-color: #ffffff;
}

input:required:invalid, select:required:invalid {
    border-bottom-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
    }
    
    form {
        padding: 30px 20px;
    }
    
    .comentario-box {
        grid-column: span 1;
    }
    
    .Enviar {
        padding: 15px;
    }
}

.about-section {
    background: linear-gradient(145deg, #0e1e2d, #15273d);
    padding: 80px 5%;
    border-radius: 24px;
    margin: 40px auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    width: 89%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #28549b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(77, 171, 247, 0.2);
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.contact-header svg {
    color: #2c6ebf;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-header h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-content p {
    color: #e9ecef;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 15px 0;
    letter-spacing: 0.03em;
    position: relative;
    padding-left: 15px;
}

.contact-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
}

.contact-content span {
    color: #3487ca;
    font-weight: 600;
    display: inline-block;
    min-width: 70px;
    margin-right: 8px;
}

/*----------------------------------------------------ICONOS-----------------------------------------------------------------------------------*/
.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icon {
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Efecto de brillo sutil */
.social-icon::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.7s ease;
}

/* Efecto de pulso sutil */
.social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

/* Colores específicos para cada plataforma en hover */
.social-icon.tiktok:hover {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(255, 0, 128, 0.4));
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: 0 10px 25px -8px rgba(255, 0, 128, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-icon.instagram:hover {
    background: linear-gradient(145deg, 
                rgba(131, 58, 180, 0.4), 
                rgba(253, 29, 29, 0.4), 
                rgba(252, 176, 69, 0.4));
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 10px 25px -8px rgba(225, 48, 108, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-icon.facebook:hover {
    background: linear-gradient(145deg, rgba(24, 119, 242, 0.4), rgba(66, 103, 178, 0.4));
    border-color: rgba(66, 103, 178, 0.5);
    box-shadow: 0 10px 25px -8px rgba(66, 103, 178, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-icon.twitter:hover {
    background: linear-gradient(145deg, rgba(29, 161, 242, 0.4), rgba(0, 0, 0, 0.9));
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 0 10px 25px -8px rgba(29, 161, 242, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-icon.linkedin:hover {
    background: linear-gradient(145deg, rgba(10, 102, 194, 0.4), rgba(0, 119, 181, 0.4));
    border-color: rgba(10, 102, 194, 0.5);
    box-shadow: 0 10px 25px -8px rgba(10, 102, 194, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-icon.youtube:hover {
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.4), rgba(205, 32, 31, 0.4));
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 10px 25px -8px rgba(255, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Efecto hover general */
.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover::after {
    animation: none;
    opacity: 0;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.social-icon:hover svg {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Color específico para cada icono en estado normal */
.social-icon.tiktok svg { color: rgba(255, 255, 255, 0.9); }
.social-icon.instagram svg { color: rgba(255, 255, 255, 0.9); }
.social-icon.facebook svg { color: rgba(255, 255, 255, 0.9); }
.social-icon.twitter svg { color: rgba(255, 255, 255, 0.9); }
.social-icon.linkedin svg { color: rgba(255, 255, 255, 0.9); }
.social-icon.youtube svg { color: rgba(255, 255, 255, 0.9); }

/* Efecto de carga inicial */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icon {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Retraso escalonado para cada icono */
.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-icon:nth-child(5) { animation-delay: 0.5s; }
.social-icon:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 14px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Para modo oscuro/claro automático */
@media (prefers-color-scheme: light) {
    .social-icon {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    
    .social-icon svg {
        color: rgba(0, 0, 0, 0.8);
    }
}
/*-------------------------------------------------------------------------------------------------------------------------------------------*/


/* WhatsApp específico */
.social-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.social-icon.whatsapp-icon:hover {
    background: rgba(37, 211, 102, 0.2);
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        border-radius: 20px;
        gap: 30px;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }
    
    .contact-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
        border-radius: 16px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .social-icon {
        width: 46px;
        height: 46px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

.icon {
    width: 32px;
    height: 32px;
    margin: 10px;
    fill: #ffffff;
    cursor: pointer;
  }
  .icon:hover {
    fill: #1e65bd;
  }

  .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: #000;
  }
  .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  









/* Estilos para el menú hamburguesa */
#mobile-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    right: 20px;
    top: 60px;
    z-index: 1000;
}

.menu {
    display: flex;
    transition: all 0.3s ease;
}

/* Estilos para cuando el menú está abierto */
.menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 100px;
    right: 0;
    width: 100%;
    background-color: #d3d3d3;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu.active a {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    #mobile-menu {
        display: block;
    }
    
    .menu {
        display: none;
    }
    
    .navbar {
        padding: 10px 20px;
    }
    
    .menu.active {
        display: flex;
    }
}

@media (min-width: 769px) {
    .menu {
        display: flex !important;
    }
}