/* --- VARIABLES GLOBALES Y PALETA PROFESIONAL --- */
:root {
    --color-primario: #00bcd4; /* Azul/Celeste original corporativo */
    --color-oscuro: #1a1a1a;
    --color-gris-claro: #f4f6f9;
    --color-blanco: #ffffff;
    --color-texto: #333333;
    --fuente-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition-smooth: all 0.4s ease;
}

/* --- RESET INTEGRAL & SEGURIDAD VISUAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--fuente-base);
    color: var(--color-texto);
    line-height: 1.6;
    background-color: var(--color-blanco);
    overflow-x: hidden;
}

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

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* --- HEADER & MENÚ DE NAVEGACIÓN --- */
header {
    background-color: var(--color-blanco);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-oscuro);
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--color-primario);
}

/* Línea estética inferior en Hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primario);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-oscuro);
}

/* --- ESTILOS ESPECÍFICOS PARA EL ESTILO DARK (MKG CONNECTION) --- */
.site-header {
    background-color: #222222 !important; /* Gris oscuro idéntico a la imagen */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.logo span {
    color: var(--color-blanco);
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.nav-menu a {
    color: #cbd5e1;
}

.nav-menu a.active, .nav-menu a:hover {
    color: #e91e63 !important; /* Magenta en el menú activo */
}

/* --- SECCIÓN HERO PREMIUM --- */
.hero {
    background-color: #222222 !important;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-blanco);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00e5ff;
    margin-bottom: 50px;
}

.hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
}

.btn-contactar {
    display: inline-block;
    background-color: #e91e63;
    color: var(--color-blanco);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: var(--transition-smooth);
}

.btn-contactar:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
}

.hero-description {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.img-chico {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    display: block;
}

.img-corazon-flotante {
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 190px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
    animation: floatingHeart 4s ease-in-out infinite;
}

@keyframes floatingHeart {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- BOTÓN FLOTANTE FIJO "CONTÁCTANOS" --- */
.fixed-contact-badge {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #00bcd4;
    color: var(--color-blanco);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition-smooth);
}

.fixed-contact-badge:hover {
    transform: scale(1.05);
    background-color: #00acc1;
}

.badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* --- SECCIÓN SERVICIOS (FONDO GRIS OSCURO) --- */
.servicios-section {
    background-color: #222222 !important;
    padding: 90px 0;
}

.servicios-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
    gap: 20px;
}

.carousel-window {
    overflow: hidden;
    width: 100%;
}

.servicios-grid {
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.servicio-card {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 25px;
    flex: 0 0 calc((100% - (25px * 2)) / 3); /* Muestra 3 elementos perfectos en desktop */
}

.card-image-box {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-footer-info {
    padding: 20px 15px 0 15px;
    text-align: center;
}

.card-footer-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-footer-info .price {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.carousel-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

/* --- SECCIÓN NOSOTROS (ESTILO PREMIUM DARK) --- */
.nosotros-section {
    background-color: var(--color-oscuro);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.mapa-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.07;
    pointer-events: none;
}

.img-mapa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) invert(100%);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nosotros-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.img-chica-nosotros {
    max-width: 100%;
    height: auto;
    display: block;
    z-index: 2;
}

.img-like-flotante {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 140px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
    animation: floatingLike 4s ease-in-out infinite;
}

@keyframes floatingLike {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.nosotros-text h2 {
    color: #00e5ff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.nosotros-text p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-contacto-celeste {
    display: inline-block;
    background-color: #00e5ff;
    color: #222222;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-contacto-celeste:hover {
    background-color: #00b8d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

.degradado-esquina-derecha {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    max-width: 400px;
    opacity: 0.6;
}

.degradado-esquina-derecha img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- SECCIÓN NUESTRO TRABAJO (DARK PREMIUM) --- */
.trabajo-section {
    background-color: #252525 !important;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.halftone-bg {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 350px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.degradado-trabajo-bg {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.halftone-bg img, .degradado-trabajo-bg img {
    width: 100%;
    height: auto;
}

.trabajo-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trabajo-info h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.trabajo-info p {
    color: #cccccc;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
}

.corazon-3d-container {
    position: relative;
    display: inline-block;
}

.img-corazon-dinamico {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    animation: flotarCorazon 4.5s ease-in-out infinite;
}

@keyframes flotarCorazon {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.03); }
    100% { transform: translateY(0px) scale(1); }
}

.trabajo-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insta-card {
    background: transparent !important;
    padding: 0 !important;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.insta-card img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.insta-card img:hover {
    transform: scale(1.04) translateY(-2px);
}

.insta-card.visible {
    opacity: 1; /* Corregido de valor '2' inválido */
    transform: translateY(0) scale(1);
}

/* --- SECCIÓN CONTACTO (DARK MODERNO) --- */
.contacto-section {
    background-color: #252525 !important;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.degradado-contacto-bg {
    position: absolute;
    top: 20%;
    right: -15%;
    width: 700px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}
.degradado-contacto-bg img { width: 100%; height: auto; }

.contacto-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contacto-form-container h3 {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.subtitle-form {
    color: #aaaaaa;
    font-size: 1.05rem;
    margin-bottom: 35px;
    font-weight: 300;
}

.mkg-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: #dddddd;
    font-size: 0.95rem;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #00e5ff;
    background-color: rgba(0, 229, 255, 0.02) !important;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0;
}

.checkbox-group input {
    margin-top: 4px;
    accent-color: #00e5ff;
}

.checkbox-group label {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group label a {
    color: #00e5ff;
    text-decoration: none;
}
.checkbox-group label a:hover { text-decoration: underline; }

.btn-enviar-mkg {
    background-color: #00e5ff;
    color: #222222;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
    align-self: flex-start;
}

.btn-enviar-mkg:hover {
    background-color: #00b8d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.contacto-info-directa {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.tag-conexion {
    color: #00e5ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.info-cta-box h2 {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.info-cta-box p {
    color: #aaaaaa;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 300;
}

.canales-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.canal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

a.canal-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateX(5px);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
}

.chica-telefono-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.img-chica-telefono {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.icon-wrap.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; }

.canal-text .telefonos {
  display: flex;              /* activa flexbox */
  gap: 20px;                  /* espacio entre los números */
  flex-wrap: wrap;            /* evita que se desborde en pantallas pequeñas */
}

.canal-text .telefonos p {
  margin: 0;                  /* quita márgenes extra */
}


.canal-text h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.canal-text p {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin: 0;
}

.canal-item i, .canal-item svg {
    text-decoration: none !important;
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-oscuro);
    color: #e2e8f0;
    padding: 70px 0 25px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 22px;
    color: var(--color-blanco);
}

.footer-col p {
    color: #94a3b8;
}

.footer-link {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--color-primario);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blanco);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--color-primario);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2d3748;
    color: #64748b;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: underline;
}

/* --- AVISO DE COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--color-blanco);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-container p {
    font-size: 0.9rem;
    color: #cbd5e1;
    max-width: 75%;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-accept {
    background-color: var(--color-primario);
    color: var(--color-blanco);
}

.btn-accept:hover {
    background-color: #00acc1;
}

.btn-reject {
    background-color: #334155;
    color: #cbd5e1;
}

.btn-reject:hover {
    background-color: #475569;
}

/* --- MODAL PRIVACIDAD --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-blanco);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.modal h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-oscuro);
}

.modal-body {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
    font-size: 0.95rem;
    color: #444;
}

.modal-body p {
    margin-bottom: 15px;
}

/* --- ADAPTACIÓN MÓVIL Y RESPONSIVE --- */
@media (max-width: 1024px) {
    .servicio-card {
        flex: 0 0 calc((100% - 25px) / 2); /* Muestra 2 tarjetas en tablets */
    }
    .trabajo-galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid, .nosotros-grid, .contacto-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text, .nosotros-text {
        text-align: center;
    }
    
    .hero-text h1 { font-size: 2.5rem; }
    .hero-subtitle { margin-bottom: 30px; }
    .hero-cta-box { margin: 0 auto; }
    .btn-contactar, .btn-contacto-celeste { margin: 0 auto; }
    
    .img-corazon-flotante {
        width: 130px;
        left: 10%;
        bottom: 0px;
    }
    
    .contacto-info-directa {
        order: -1; /* Muestra canales de comunicación arriba en móvil */
    }
    
    .btn-enviar-mkg {
        align-self: stretch;
        text-align: center;
    }

    /* MENÚ HAMBURGUESA DINÁMICO */
    .nav-toggle {
        display: block;
        color: var(--color-blanco);
    }

    .nav-menu {
        position: absolute;
        top: 85px;
        left: -100%;
        width: 100%;
        background-color: #222222; /* Fondo adaptado a la estética Dark */
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        transition: var(--transition-smooth);
        padding: 30px 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title, .servicios-title, .nosotros-text h2, .trabajo-info h2 {
        font-size: 2rem;
    }

    /* CONFIGURACIÓN TOUCH SCROLL NATIVO PARA EL CARRUSEL EN CELULARES */
    .carousel-btn {
        display: none !important;
    }

    .carousel-window {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }

    .servicios-grid {
        transform: none !important; /* Desactiva el desplazamiento por JS */
        gap: 15px;
    }

    .servicio-card {
        flex: 0 0 85%; /* Muestra una tarjeta casi completa y asoma la siguiente */
        scroll-snap-align: center;
    }

    .trabajo-galeria {
        grid-template-columns: 1fr; /* Un solo post por fila para máxima legibilidad */
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .cookie-container p {
        max-width: 100%;
        margin-bottom: 12px;
    }
}