/* styles/style.css */

/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.divider {
    color: #333;
    background-color: black;
    height: 1px;
    width: 100%;
    margin: 10px;
    margin-bottom: 30px;
}

h1, h2, h3 {
    color: #444;
    margin: 0 0 10px;
}

p {
    margin: 0 0 15px;
}

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

/* Header Styles */
/*.site-header {*/
/*    width: 90%;*/
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*    overflow: hidden;*/
    /*box-shadow: 0 4px 6px rgba(255, 102, 0, 0.4);*/
/*    transition: transform 0.3s;*/
/*    position: relative;*/
/*    z-index: 1000;*/
/*    background-color: #000000;*/
/*    border-radius: 25px;*/
/*    margin: 20px auto;*/
/*    padding: 10px 20px;*/
/*}*/

/* Header Styles */
.site-header {
    width: 85%; /* Ajustado para que coincida con el ancho del contenido */
    margin: 0 auto; /* Centrar horizontalmente */
    background-color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Sombra gris oscuro */
    border-radius: 0 0 25px 25px; /* Solo bordes redondeados abajo */
    padding: 10px 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Image */
.logo img {
    height: 80px; /* Altura fija */
    width: auto; /* Ancho automático */
    max-width: 250px; /* Evita que el logo sea demasiado grande */
    object-fit: contain; /* Mantiene la proporción sin recortar */
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #FF6600;
}

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #fff;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 20px;
    color: #FF8800;
}

.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background-color: #000000;
    border-top: 2px solid #ffffff;
}

.main-menu ul li a.active {
    font-weight: bold;
    color: #FF6600;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.main-menu ul li a:hover {
    color: #FF6600;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.quote-btn {
    background-color: #FF8800;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.quote-btn:hover {
    background-color: #FF6600;
}

/* Dropdown Styles */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    border: 1px solid #e0e0e0;
    display: none;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 5px 15px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f7f7f7;
    color: #FF6600;
}

/* Mobile Header */
/*.mobile-header {*/
/*    background: #000;*/
/*    padding: 10px 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);*/
/*    border-radius: 0 0 15px 15px;*/
/*    position: relative;*/
/*}*/

.mobile-header {
    background: #000;
    padding: 15px 20px; /* Aumenta el padding para dar más espacio */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 15px 15px;
    position: sticky;
    top: 0;
    width: 100%;
    height: 60px; /* Asegura que haya suficiente altura */
    z-index: 1000; /* Asegura que el header esté por encima del contenido */
}

/* Asegura que el botón hamburguesa sea visible */
.menu-toggle {
    font-size: 24px; /* Ajusta el tamaño del ícono */
    color: white; /* Asegura contraste */
    cursor: pointer;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Logo */
.mobile-header .logo img {
    height: 40px;
    width: auto;
}

/* Menu Toggle (Hamburguesa) */
.menu-toggle {
    background: none;
    border: none;
    color: #FF6600;
    font-size: 24px;
    cursor: pointer;
}

/* Menú desplegable */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 15px 15px;
}

.mobile-menu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    text-align: center;
}

.mobile-menu ul li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: block;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #FF6600;
}

/* Botón especial */
.mobile-menu .quote-btn {
    background: #FF6600;
    color: white;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.mobile-menu .quote-btn:hover {
    background: #E65100;
}

/* Mostrar menú cuando está activo */
.mobile-menu.active {
    display: block;
}

/* Responsive para solo dispositivos móviles */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
}

/* Dropdown IT Services Mobile menu */
.dropdown {
    position: relative;
}

/* Estilos del dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #222;
    border-radius: 10px;
    padding: 10px;
    width: 250px; /* Ajusta el ancho según sea necesario */
    max-height: 250px; /* Altura máxima antes de activar el scroll */
    overflow-y: auto; /* Agrega el scroll vertical */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Mostrar dropdown cuando está activo */
.dropdown.active .dropdown-menu {
    display: block;
}

/* Estiliza las opciones del dropdown */
.dropdown-menu li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Último elemento sin borde */
.dropdown-menu li:last-child {
    border-bottom: none;
}

/* Estiliza la barra de desplazamiento en navegadores basados en WebKit (Chrome, Edge, Safari) */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #111;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #FF6600; /* Color del scroll naranja */
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #E65100; /* Color más oscuro al pasar el mouse */
}

/* Header Desktop (Solo visible en PC) */
.site-header {
    display: block; /* Por defecto, visible */
}

/* Header Mobile (Oculto por defecto en PC) */
.mobile-header {
    display: none;
}

/* Mostrar el Header Mobile y Ocultar el de PC en Móviles */
@media (max-width: 768px) {
    .site-header {
        display: none !important; /* Oculta el header de PC en móviles */
    }
    .mobile-header {
        display: flex !important; /* Muestra el header de móviles */
    }
}

/* Content Styles */
.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* Contenedor de los artículos */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Siempre tres columnas */
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

/* Card de Artículo */
.article-card {
    background: #ffffff; /* Fondo blanco */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Sombras sutiles */
    transition: transform 0.3s;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Efecto hover */
.article-card:hover {
    transform: translateY(-5px); /* Pequeña elevación */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Imagen del Card */
.article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0; /* Redondeo solo en la parte superior */
}

/* Contenido del Card */
.article-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Título del Card */
.article-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
    text-transform: uppercase;
    color: black; /* Títulos en negro */
}

/* Texto del Card - Limita la cantidad de líneas */
.article-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Máximo 2 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Botón Leer Más */
.read-more {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #FF8800; /* Naranja claro como en el header */
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Hover en el botón */
.read-more:hover {
    background-color: #FF6600; /* Naranja más oscuro */
}

/* Responsive para pantallas más pequeñas */
@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en tablets */
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }
}



/* Tutorials Section */
.video-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
}

.video video {
    width: 400px;
    height: 225px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logos img {
    max-width: 150px;
    height: auto;
}

/* Footer Styles */
.site-footer {
    background-color: #0F172A; /* Azul oscuro */
    padding: 20px;
    color: #fff;
    font-size: 14px;
    border-top: 2px solid #1E3A8A; /* Línea separadora */
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .footer-links a {
        display: inline-block;
        padding: 8px 15px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .footer-links span {
        display: none; /* Oculta el separador en móviles */
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .main-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .video-slider {
        flex-direction: column;
        align-items: center;
    }

    .article-card {
        flex: 1 1 100%;
    }

    .logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contact Section Styles */
.contact {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    margin: 40px auto;
    max-width: 800px;
}

/* Contact Title */
.contact h1 {
    font-size: 28px;
    /*color: #4B0082;*/
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Contact Description */
.contact p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Contact Form */
.contact-form {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Labels */
.contact-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
    font-weight: bold;
}

/* Input Fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FF8800; /* Naranja claro */
    outline: none;
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.contact-form .btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #FF8800; /* Naranja claro */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button Hover */
.contact-form .btn:hover {
    background-color: #FF6600; /* Naranja oscuro */
}

/* Button Focus */
.contact-form .btn:focus {
    outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 30px 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact h1 {
        font-size: 24px;
    }

    .contact p {
        font-size: 14px;
    }
}



/* Get a Quote Section Styles */
.get-quote {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    margin: 40px auto;
    max-width: 800px;
}

/* Get a Quote Title */
.get-quote h1 {
    font-size: 28px;
    /*color: #4B0082;*/
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Get a Quote Description */
.get-quote p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Quote Form */
.quote-form {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Labels */
.quote-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
    font-weight: bold;
}

/* Input Fields */
.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

/* Focus effect */
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: #FF8800; /* Naranja claro */
    outline: none;
}

/* Dropdown */
.quote-form select {
    cursor: pointer;
}

/* Textarea */
.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.quote-form .btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: #FF8800; /* Naranja claro */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button Hover */
.quote-form .btn:hover {
    background-color: #FF6600; /* Naranja oscuro */
}

/* Button Focus */
.quote-form .btn:focus {
    outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .get-quote {
        padding: 30px 15px;
    }

    .quote-form {
        padding: 20px;
    }

    .get-quote h1 {
        font-size: 24px;
    }

    .get-quote p {
        font-size: 14px;
    }
}


/* Partners Section */
.partners {
    text-align: center;
    /*padding: 50px 20px;*/
    background-color: #ffffff;
    border-radius: 10px;
    margin: auto;
    max-width: 1200px;
}

/*.partners h2 {*/
/*    font-size: 28px;*/
/*    color: #000000;*/
/*    margin-bottom: 30px;*/
/*    text-transform: uppercase;*/
/*    font-weight: bold;*/
/*}*/

/* Contenedor de los partners */
.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Espaciado entre los elementos */
    padding: 20px;
}

/* Card individual para cada partner */
.partner {
    width: 150px; /* Tamaño del card */
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* Fondo blanco */
    border-radius: 50%; /* Hace que el card sea circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra para elevación */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

/* Efecto hover */
.partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Imagen dentro del card */
.partner img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .partners-list {
        flex-direction: column;
        gap: 20px;
    }

    .partner {
        width: 120px;
        height: 120px;
    }
}


/* Pagination widget Styles */
/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.pagination li {
    display: inline-block;
}

/* Estilos para los enlaces */
.pagination li a,
.pagination li span {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    background: #FF8800; /* Naranja claro */
    color: white;
    border: 2px solid #FF8800;
    text-align: center;
}

/* Hover - Cambia a un color más oscuro */
.pagination li a:hover {
    background: #FF6600; /* Naranja más fuerte */
    border-color: #FF6600;
    color: white;
}

/* Botones deshabilitados */
.pagination li.disabled a,
.pagination li.disabled span {
    background: #ddd;
    color: #888;
    border: 2px solid #ddd;
    pointer-events: none;
}

/* Botón activo */
.pagination .active a {
    background: black; /* Negro como en el header */
    border-color: black;
    color: white;
    cursor: default;
}




/* Post View Styles */
/* Post Image Styling */
.entry-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.entry-hero img {
    /*max-width: 100%;*/
    max-width: 1200px;
    height: auto;
    /*height: 580px;*/
    display: block;
    margin: 0 auto; /* Asegura el centrado */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombras */
}

/* Card Container */
.content-container {
    max-width: 1200px; /* Centrado */
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Title and Meta Info */
h5 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #4B0082; /* Color morado */
    margin-top: 15px;
}

.sn1rbc {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        padding: 20px;
    }
    
    h5 {
        font-size: 18px;
    }

    .sn1rbc {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .entry-hero img {
        max-width: 100%;
        height: auto;
    }
}


 /*Estilos del Widget*/

.share-widget {
    text-align: center;
    margin: 20px 0;
}

.share-btn {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.share-btn:hover {
    background-color: #E65100;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.share-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.instagram { background: #E4405F; }
.twitter { background: #000; }
.facebook { background: #1877F2; }
.linkedin { background: #0A66C2; }

.share-icon:hover {
    transform: scale(1.1);
}


/* Redes Sociales */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Quita el subrayado */
}

.instagram { background: #E4405F; }
.twitter { background: #000; }
.linkedin { background: #0A66C2; }

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
