* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: #252c3b;
}

a {
    text-decoration: none;
    color: white;
}

ul,
li {
    list-style: none;
}

/* ============ HERO CON VIDEO ============ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ============ HEADER BASE — igual en todas las páginas ============ */
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 5vw;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#us-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 5vw;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/us.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* En index el header vive dentro de .hero-section que ya tiene el video */
.hero-section header {
    background-image: none;
    background: transparent;
}

/* ============ LOGO ============ */
.logo-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-cont>img {
    height: 120px;
    width: auto;
}

/* ============ NAV BAR ============ */
.nav-bar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nav-bar li {
    font-size: 17px;
}

.nav-bar ul a li {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.nav-bar ul a li:hover {
    color: rgb(255, 196, 0);
}

/* ============ HERO CONTENT ============ */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-top: 20px;
}

.buttons-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #25D366;
    transform: translateY(-5px) scale(1.05);
}

/* ============ SECCIÓN GOLD ============ */
#gold {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #a07d2e;
    color: #ffffff;
    padding: 30px 5vw;
    width: 100%;
}

#gold h4 {
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ TESTIMONIOS ============ */
#testimonios {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    min-height: 70vh;
    width: 100%;
    padding: 60px 80px;
}

.testimonios-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonio {
    display: none;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

.testimonio.active {
    display: block;
}

.testimonio h4 {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonio p {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonio-prev,
.testimonio-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #c9a03d;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonio-prev {
    left: -60px;
}

.testimonio-next {
    right: -60px;
}

.testimonio-prev:hover,
.testimonio-next:hover {
    background-color: #a07d2e;
    transform: translateY(-50%) scale(1.1);
}

.testimonio-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #c9a03d;
    width: 30px;
    border-radius: 20px;
}

.dot:hover {
    background-color: #a07d2e;
}

/* ============ CONTACTO ============ */
#contacto {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 60px;
    width: 100%;
}

/* Estilos específicos para la página de contactos (fondo oscuro) */
#contactos-body {
    background-color: #252c3b;
}

#contactos-body #contacto {
    background: #252c3b;
}

#contactos-body .contacto-header h2 {
    color: #ffffff;
}

#contactos-body .contacto-header h2 span {
    color: #c9a03d;
}

#contactos-body .contacto-header p {
    color: #cccccc;
}

#contactos-body .contacto-card2 {
    background: #ffffff;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-header {
    text-align: center;
    margin-bottom: 50px;
}

.contacto-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contacto-header h2 span {
    color: #c9a03d;
    position: relative;
}

.contacto-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #c9a03d;
    width: 60%;
    margin: 0 auto;
}

.contacto-header p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contacto-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.contacto-grid2 {
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contacto-card2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contacto-card2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #c9a03d;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contacto-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contacto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #c9a03d;
}

.contacto-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #c9a03d;
    transition: all 0.3s ease;
}

.contacto-card:hover .contacto-icon,
.contacto-card2:hover .contacto-icon {
    background: #c9a03d;
    color: #ffffff;
    transform: scale(1.05);
}

.contacto-card h3,
.contacto-card2 h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contacto-link {
    display: block;
    font-size: 15px;
    color: #c9a03d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    word-break: break-word;
    margin: 5px 0;
}

.contacto-link:hover {
    color: #a07d2e;
    text-decoration: underline;
}

.contacto-info {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
}

.contacto-dir {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.contacto-whatsapp {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

iframe {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5vh;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background: #20b859;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.social-link.whatsapp .button svg {
    fill: #ffffff !important;
}

/* ============ FOOTER SOCIAL ============ */
.footer-social-bar {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-social-bar p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 110%, #ffdb8f, #ff7b00, #d300c5, #002eff);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* ============ SERVICIOS PAGE ============ */
#servicios-body {
    background: #252c3b;
}

#servicios {
    background-color: #252c3b;
    padding: 80px 60px;
    width: 100%;
}

.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicios-header {
    text-align: center;
    margin-bottom: 50px;
}

.servicios-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.servicios-header h2 span {
    color: #c9a03d;
    position: relative;
}

.servicios-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #c9a03d;
    width: 60%;
    margin: 0 auto;
}

.servicios-header p {
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servicio-link {
    text-decoration: none;
    display: block;
}

.servicio-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #c9a03d;
}

.servicio-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.servicio-img img {
    width: 100%;
    max-width: 280px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
}

.servicio-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.servicio-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
}

.servicio-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.servicio-lista li {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    transition: color 0.2s ease;
}

.servicio-lista li:hover {
    color: #c9a03d;
}

.servicios-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.servicios-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c9a03d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 160, 61, 0.3);
}

.servicios-btn:hover {
    background: #a07d2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 160, 61, 0.4);
    color: #ffffff;
}

/* ============ NOSOTROS ============ */
.about-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #252c3b;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-section {
    background: #ffffff;
    padding: 80px 60px;
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #c9a03d;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    background: #f8f8f8;
    padding: 80px 60px;
    width: 100%;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.values-header h2 span,
.team-header h2 span {
    color: #c9a03d;
}

.values-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #c9a03d;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #c9a03d;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #c9a03d;
    color: #ffffff;
    transform: scale(1.05);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.team-section {
    background: #ffffff;
    padding: 80px 60px;
    width: 100%;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    color: #c9a03d;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card small {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    display: block;
}

#contactos-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 5vw;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/cont.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

/* ============ ANIMACIONES ============ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .contacto-container2 {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* ============================================================
   RESPONSIVE — MÓVIL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Header: logo arriba, nav abajo */
    header,
    #us-header,
    #contactos-header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 5vw;
    }

    .logo-cont>img {
        height: 80px;
    }

    .nav-bar ul {
        gap: 1.2rem;
    }

    .nav-bar li {
        font-size: 14px;
    }

    /* Hero */
    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
        padding: 0 10px;
    }

    .button {
        margin: 10px;
        padding: 8px 18px;
    }

    /* Gold */
    #gold {
        padding: 30px 20px;
    }

    #gold h4 {
        font-size: 15px;
    }

    /* Testimonios */
    #testimonios {
        padding: 50px 50px;
        min-height: auto;
    }

    .testimonio {
        padding: 30px 20px;
    }

    .testimonio h4 {
        font-size: 15px;
    }

    .testimonio p {
        font-size: 13px;
    }

    .testimonio-prev {
        left: -40px;
    }

    .testimonio-next {
        right: -40px;
    }

    .testimonio-prev,
    .testimonio-next {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    /* Contacto */
    #contacto {
        padding: 50px 20px;
    }

    .contacto-header h2 {
        font-size: 30px;
    }

    .contacto-header p {
        font-size: 15px;
    }

    .contacto-grid,
    .contacto-grid2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-card,
    .contacto-card2 {
        padding: 30px 20px;
    }

    .contacto-container2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    iframe {
        max-width: 90vw;
        margin: 20px auto;
    }

    .whatsapp-btn {
        font-size: 15px;
        padding: 12px 24px;
    }

    /* Servicios */
    #servicios {
        padding: 50px 20px;
    }

    .servicios-header h2 {
        font-size: 30px;
    }

    .servicios-header p {
        font-size: 15px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicio-img img {
        max-width: 100%;
        height: 160px;
    }

    .servicio-card h3 {
        font-size: 17px;
    }

    .servicio-lista li {
        font-size: 13px;
    }

    .servicios-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    /* Nosotros */
    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section,
    .values-section,
    .team-section {
        padding: 50px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-image {
        max-width: 280px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-header h2,
    .team-header h2 {
        font-size: 26px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-img {
        width: 160px;
        height: 160px;
    }

    /* Footer */
    .footer-social-bar {
        padding: 15px;
    }

    .social-icons {
        gap: 20px;
    }

    /* Video fallback */
    .hero-section {
        background-image: url('images/poster.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* ============================================================
   RESPONSIVE — MÓVIL PEQUEÑO (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .logo-cont>img {
        height: 65px;
    }

    .nav-bar ul {
        gap: 0.8rem;
    }

    .nav-bar li {
        font-size: 12px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    #testimonios {
        padding: 40px 38px;
    }

    .testimonio-prev {
        left: -32px;
    }

    .testimonio-next {
        right: -32px;
    }

    .testimonio-prev,
    .testimonio-next {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .contacto-header h2 {
        font-size: 26px;
    }

    .whatsapp-btn {
        font-size: 14px;
        padding: 11px 18px;
        gap: 8px;
    }

    .servicios-header h2 {
        font-size: 26px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 25px 20px;
    }

    .about-content h2,
    .values-header h2,
    .team-header h2 {
        font-size: 22px;
    }
}