/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* HEADER */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;	
	background: linear-gradient(
		135deg,
		#1a0f2a,   /* violeta oscuro (más legible) */
		#2a143f,   /* violeta profundo */
		#4b1f73,   /* violeta brillante */
		#2a143f,
		#1a0f2a		
);
	background-size: 150% 150%;
	animation: gradientShift 18s linear infinite;
    padding: 26px 0;
    position: relative;
	/* Recorta y oculta cualquier contenido que sobresalga del header.
	   Evita que el contenedor del logo (posicionado en absolute)
	   se extienda visualmente hacia el <main>. */
	overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
/* BORDE DOBLE HEADER */

.site-header::before,
.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Línea principal (dorado suave) */
.site-header::before {
    bottom: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(214,189,130,0.15),
        #d6bd82,
        rgba(214,189,130,0.15)
    );
    box-shadow: 0 0 12px rgba(214,189,130,0.35);
}

/* Línea secundaria (más fina, elegante) */
.site-header::after {
    bottom: 4px; 
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.25),
        rgba(214,189,130,0.7),
        rgba(255,255,255,0.25)
    );
    opacity: 0.55;
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
/* LOGO */

.header-logo {
    position: absolute;
    left: 40px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
}

/* Logo */
.header-logo img {
    max-width: 180px;
    filter:
        drop-shadow(0 0 12px rgba(230, 210, 163, 0.45))
        drop-shadow(0 0 24px rgba(201, 168, 106, 0.25));
}

.main-nav {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 38px;  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

/* Menú */
.main-nav ul {
    display: flex;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    font-family: 'Cinzel', serif;
    font-size: 17px;              /* más presencia */
    font-weight: 600;             /* peso real, no fake bold */
    letter-spacing: 0.28em;       /* aire imperial */
    text-transform: uppercase;
    background: linear-gradient(
        180deg,
        #f7edc6,
        #d9c287,
        #b6944f
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.35),
        0 0 6px rgba(199,176,122,0.25);
    text-decoration: none;
    position: relative;
    transition:
        text-shadow 0.4s ease,
        filter 0.4s ease;
}

/* Subrayado dorado animado */
.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 90%;
    height: 1.5px;
    background: linear-gradient(
        90deg,
        rgba(199,176,122,0.15),
        rgba(199,176,122,0.65),
        rgba(199,176,122,0.15)
    );
    box-shadow:
        0 0 6px rgba(199,176,122,0.35);
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.main-nav a:hover {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(199,176,122,0.45),
        0 0 18px rgba(199,176,122,0.25);
}

.main-nav a:hover::after {
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(199,176,122,0.35),
        #d6bd82,
        rgba(199,176,122,0.35)
    );

    box-shadow:
        0 0 12px rgba(214,189,130,0.7),
        0 0 26px rgba(214,189,130,0.45);
}

.main-nav li.current-menu-item a {
    color: #ffffff;
}

.main-nav li.current-menu-item a::after {
    width: 120%;
    background: linear-gradient(
        90deg,
        transparent,
        #c7b07a,
        transparent
    );
}

.main-nav a {
    position: relative;
}

/*
.main-nav li.is-active a {
    color: rgba(212,178,111,0.9); 
}
*/

.main-nav li.is-active a::after {
    content: "";
    position: absolute;
  	/*left: 50%;*/
    bottom: -6px;
    width: 15px;
    height: 1px;
    background-color: rgba(212,178,111,0.8);
	opacity: 0.75;
    /*transform: translateX(-50%);*/
}


/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* FOOTER */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.site-footer {
	position: relative;
    overflow: hidden; /* asegura recorte limpio */
    background: linear-gradient(180deg, #140a22, #0e0616);
    color: rgba(255,255,255,0.9);
    padding: 28px 8% 18px;
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/*   BORDE DOBLE SUPERIOR FOOTER */

.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Línea principal (dorado suave) */
.site-footer::before {
    top: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(214,189,130,0.15),
        #d6bd82,
        rgba(214,189,130,0.15)
    );
    box-shadow: 0 0 10px rgba(214,189,130,0.35);
}

/* Línea secundaria (más fina, elegante) */
.site-footer::after {
    top: 4px; /* separación entre líneas */
    height: 1.2px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.25),
        rgba(214,189,130,0.65),
        rgba(255,255,255,0.25)
    );
    opacity: 0.55;
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 90px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    margin-top: 0;
}

/* Marca */
.footer-brand img {
    max-width: 170px;
    margin-bottom: 28px;
}

.footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.85;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}

/* Títulos */
.site-footer h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 26px;
    color: #e6d39a;
}

/* Textos generales */
.footer-contact p,
.footer-menu a,
.footer-features li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
}

.footer-menu a {
	font-size: 18px;	
}

.footer-menu li.is-active a {
    color: #d4b26f; /* dorado */
    position: relative;
}

/*
.footer-menu li.is-active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: rgba(212,178,111,0.7);
}
*/

/* Elimina saltos exagerados */
.footer-contact p {
    margin: 0 0 6px 0;
}

/* Separación entre secciones dentro de contacto */
.footer-contact h4 + p {
    margin-top: 8px;
}

.footer-contact h4:nth-of-type(2) {
    margin-top: 22px;
}

.footer-contact h4 {
    margin: 0 0 8px 0;
}

.footer-contact,
.footer-menu {
    align-self: start;
    margin-top: 20px;
}

.footer-features li {
    margin: 0;
}

/* Features */
.footer-features {
    margin-top: 18px;
    list-style: none;
    padding: 0;
}

.footer-features li {
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* Menú */
.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #f5e6a8;
}

/* Parte inferior */
.footer-bottom {
    margin-top: 14px;
    padding-top: 8px;
    border-top: 1px solid rgba(214,189,130,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;    
    text-align: center;
}

.footer-bottom p {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);	
    margin: 0;
    line-height: 2;
}

.footer-credit {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
	line-height: 1.2;
    white-space: nowrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 6px 0;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    fill: #e6d39a;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 46px;
        text-align: center;
    }
    .footer-brand p {
        font-size: 19px;
		 margin-top: 0;
    }
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* PAGINA INICIO */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

/* =========================
   RESET BÁSICO
========================= */

/*
body.joyeria-main {
    margin: 0;
    background-color: #0e0614;     
    font-family: 'Playfair Display', serif;
}
*/

/* =========================
   HERO VIDEO
========================= */

.hero-video {
    position: relative;
    width: 100%;	
	/* Mantiene la proporción original del video (1280x426) para que el hero
       sea responsive sin ocupar toda la pantalla ni deformar el video */
	/* Define la relación ancho/alto del contenedor según el video original.
       Permite que el alto se calcule automáticamente a partir del ancho */	
	/* responsive: el diseño  se adapta automáticamente al tamaño de la pantalla, sin romperse ni deformarse */
	/* hero hace: */
	/*  Desktop grande → banner ancho y elegante */
	/* Laptop → mismo banner, más bajo */
	/* Mobile → se achica proporcionalmente */
    aspect-ratio: 1280 / 426;
    max-height: 520px;
    overflow: hidden;
       background:
        linear-gradient(
            140deg,
            #3a2b46 0%,
            #2f223c 45%,
            #24182f 75%,
            #1c1226 100%
        );
}

.hero-video {
    position: relative;
    overflow: hidden;
}

/* ========= BORDE DOBLE ARRIBA ========= */

/*
.hero-video::before,
.hero-video::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}
*/

/* Línea principal */
/*
.hero-video::before {
    top: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(214,189,130,0.2),
        #d6bd82,
        rgba(214,189,130,0.2)
    );
    box-shadow: 0 0 14px rgba(214,189,130,0.45);
}
*/

/* Línea secundaria (más fina) */
/*
.hero-video::after {
    top: 6px; 
    height: 1.5px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.35),
        rgba(214,189,130,0.8),
        rgba(255,255,255,0.35)
    );
    opacity: 0.6;
}
*/

/* ========= BORDE DOBLE ABAJO ========= */

.hero-video__bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(214,189,130,0.2),
        #d6bd82,
        rgba(214,189,130,0.2)
    );
    box-shadow: 0 0 14px rgba(214,189,130,0.45);
    pointer-events: none;
}

.hero-video__bottom::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.35),
        rgba(214,189,130,0.8),
        rgba(255,255,255,0.35)
    );
    opacity: 0.6;
    pointer-events: none;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay oscuro */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(42,29,51,0.15),
        rgba(28,18,38,0.35)
    );
    z-index: 1;
}

/* Contenido hero */
.hero-content {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 420px;
}

.hero-content--claim h1 em {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    line-height: 1.05;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.6px;
    display: inline-block;
    margin-bottom: 32px;
    background: linear-gradient(
        120deg,
        #f6f1e8 0%,
        #e6d39a 20%,
        #d6bd82 40%,
        #e6d39a 60%,
        #f6f1e8 80%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 3px 8px rgba(0,0,0,0.25);
    animation: goldShine 8s ease-in-out infinite;
}

@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-demo {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72); 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================
   BANNER MAIN
========================= */

.banner-main {
    min-height: 270px;
    display: flex;	
    align-items: center;
    justify-content: center;		
	padding-bottom: 51px;
	background: linear-gradient(
        120deg,
        #0e0616,
        #1c0f2b,
        #3a1a5f,
        #1c0f2b,
        #0e0616
    );
    background-size: 220% 220%;
    animation: bannerEpicShift 28s ease-in-out infinite;
	/*background-size: 200% 200%;*/
    /*animation: bannerLuxuryMove 25s ease-in-out infinite;	*/
    position: relative;
    overflow: hidden;	    
}

@keyframes bannerEpicShift {
    0% {
        background-position: 0% 40%;
    }
    50% {
        background-position: 100% 60%;
    }
    100% {
        background-position: 0% 40%;
    }
}

/* chrome */
@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
    .banner-main {
        padding-bottom: 50px;
    }
}

/* Línea dorada superior e inferior (detalle lujo) */
/* Son pseudo-elementos CSS. */
.banner-main::before,
.banner-main::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,0.6),
        transparent
    );
}

.banner-main::before {
    top: 40px;
}

.banner-main::after {
    bottom: 40px;
}

.banner-main__inner {
    max-width: 900px;
    text-align: center;
    /*padding: 40px 20px;*/
	padding: 60px 20px 40px; /* ↑ arriba / lados / abajo */
}

.banner-main__inner h2 {
    font-family: "Playfair Display", serif;
	/* Usá un tamaño fluido, pero nunca más chico ni más grande que estos límites. */
	/* 26px → tamaño mínimo (en móviles chicos) */
	/* 3.2vw → tamaño fluido según el ancho de pantalla */
	/* 38px → tamaño máximo (en pantallas grandes) */
	/* Con clamp() en mobile → no se rompe */
	/* En desktop → no se descontrola */
	/* En pantallas grandes → mantiene elegancia */		
    font-size: clamp(26px, 3.2vw, 38px);
    letter-spacing: 0.12em;
    color: #d4af37;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.banner-main__inner p {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.banner-main__inner .nowrap {
    white-space: nowrap;
}

/* =========================
   CATEGORY BANNERS
========================= */

.category-banners {
    width: 100%;
}

/* Banner base */
.category-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    min-height: 520px;
    padding: 90px 8%;	
}

/* Intercalado de color */
.category-banner:nth-child(odd) {
    background: linear-gradient(
        135deg,
        #1a0f2a,
        #2a143f,
        #4b1f73,
        #2a143f,
        #1a0f2a
    );
    background-size: 150% 150%;
    animation: gradientShift 18s linear infinite;
}

.category-banner:nth-child(even) {
    background: linear-gradient(135deg, #140a22, #0e0616);
}

/* Intercalado layout */
.category-banner:nth-child(even) {
    flex-direction: row-reverse;
}

.category-banner {
    position: relative;
}

/* Línea dorada entre banners. Funciona como separador entre banners */
/* La línea siempre se dibuja arriba de cada banner (top: 0) */
.category-banner::before {
    content: "";
    position: absolute;	
    top: 0; /* lo pega al borde superior del banner */
	/* ocupa todo el ancho real del contenedor, sin pensar en porcentajes. */
	/* pegado al borde izquierdo */
	/* pegado al borde derecho */
    left: 0;          
    right: 0;         
    height: 2px;	
    background: linear-gradient(
        90deg,
        #b8922e,
        #d4af37,
        #f5e6a8,
        #d4af37,
        #b8922e
    );
    background-size: 180% 100%;
    animation: goldLineFlow 14s linear infinite;
}

/* Línea dorada inferior SOLO para el último banner */
/*
.category-banner:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        #b8922e,
        #d4af37,
        #f5e6a8,
        #d4af37,
        #b8922e
    );
    background-size: 180% 100%;
    animation: goldLineFlow 14s linear infinite;
}
*/

@keyframes goldLineFlow {
    from { background-position: 0% 50%; }
    to   { background-position: 180% 50%; }
}

/* Imagen */
.banner-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.banner-image img {
    width: 100%;
    max-width: 320px;
}

/* Recuadro oscuro en banners impares */
.banner-content {
    position: relative; /* necesario para el botón absoluto */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* separa contenido arriba y botón abajo */
    height: 100%; 
    padding: 48px 54px;
    background: linear-gradient(
        135deg,
        rgba(20,10,34,0.85),
        rgba(10,5,18,0.88)
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214,189,130,0.35);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        inset 0 0 60px rgba(214,189,130,0.06);
	 padding-bottom: 80px;
}

.banner-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    letter-spacing: 0.28em;
    margin-bottom: 28px;
    text-transform: uppercase;
    background: linear-gradient(
        180deg,
        #fff3d0,
        #d9c287,
        #b6944f
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-banner .banner-content p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.95;
    letter-spacing: -0.01em;    
	color: rgba(255,255,255,0.92);
}

/* banners pares */
/*
.category-banner:nth-child(even) .banner-content {
    background: linear-gradient(
        135deg,
        rgba(18,8,31,0.92),
        rgba(10,5,18,0.96)
    );
    border: 1px solid rgba(214,189,130,0.45);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.65),
        inset 0 0 30px rgba(214,189,130,0.05);
}
*/

.banner-link {
    position: absolute;
    bottom: 32px;
    right: 36px;
    display: inline-block;
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #e8d7a1;
    text-decoration: none;
    border: 1px solid rgba(232,215,161,0.6);
    background: linear-gradient(
        135deg,
        rgba(232,215,161,0.08),
        rgba(182,148,79,0.05)
    );
    transition: all 0.35s ease;
}

/* Cuando la pantalla mide 900px o menos (mobile / tablet): */
/* Queda debajo del texto, centrado y prolijo sino se veria mal */
@media (max-width: 900px) {
    .banner-link {
        position: static;
        margin-top: 32px;
    }
}

.banner-link:hover {
    color: #140a22;

    background: linear-gradient(
        135deg,
        #f6e7b8,
        #d9c287,
        #b6944f
    );

    border: 1px solid #9f7a3a;

    box-shadow:
        0 0 0 1px rgba(182,148,79,0.8),   /* marco visible */
        0 0 18px rgba(182,148,79,0.55),  /* brillo 360° */
        0 10px 22px rgba(0,0,0,0.35);    /* profundidad */
}

/* mobile */
@media (max-width: 900px) {
    .category-banner {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .banner-content,
    .banner-image {
        flex: none;
        max-width: 100%;
    }
}

/*
.gold-line {
    border: none;
    height: 2px;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    background: linear-gradient(
        90deg,
        #b8922e,
        #d4af37,
        #f5e6a8,
        #d4af37,
        #b8922e
    );
    background-size: 180% 100%;
    animation: goldLineFlow 14s linear infinite;
}
*/

/* =========================
   TRUST / INSTITUTIONAL BANNER
========================= */

.trust-banner {
    position: relative;    
    /*padding: 70px 8% 70px; */	 
    /* Padding vertical y horizontal:
       - 70px arriba y abajo → mismo aire visual (simetría)
       - 8% a los lados → margen fluido según ancho de pantalla
       Equivale a: padding-top: 70px; padding-bottom: 70px; padding-left: 8%; padding-right: 8%; */    
	padding: 70px 8%;
	/* Fondo marfil suave para contraste con el banner violeta superior */
    background: linear-gradient(
        180deg,
        #f6f1e8,
        #efe6d6
    );
}

/* Líneas separadoras */
/* estilos comunes */
.trust-banner::before,
.trust-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #7a5a1e 10%,
        #b8922e 25%,
        #f5e6a8 50%,
        #b8922e 75%,
        #7a5a1e 90%,
        transparent 100%
    );
    z-index: 2;
}

/* línea separadora superior */
/* Transición visual entre banner oscuro y fondo marfil */
.trust-banner::before {
    top: 0;
    height: 8px;
    box-shadow:
        0 -2px 6px rgba(0,0,0,0.65),
        0 4px 18px rgba(214,189,130,0.55),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

/* línea separadora inferior */
/* Transición visual entre fondo marfil y footer */
.trust-banner::after {
    bottom: 0;
    height: 6px;
    box-shadow:
        0 -3px 12px rgba(214,189,130,0.35),
        inset 0 -1px 0 rgba(255,255,255,0.25);
}

/* recuadro editorial */
.trust-banner__inner {
    max-width: 820px;
    margin: 0 auto;
	padding: 48px 56px;
    text-align: center;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(184,146,46,0.35);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);
}

.trust-banner__inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    letter-spacing: 0.3em;
	margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #6b5525;
}

.trust-banner__inner p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 20px;	
    line-height: 1.9;
    color: #3a2f1c;
	 margin: 0;
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* PAGINA TIENDA */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.joyas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.joya {
  position: relative;
  cursor: pointer;
}

.joya img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}

.joya:hover img {
  transform: scale(1.05);
}

/* Tooltip / cartelito de descripción */
.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  padding: 10px;
  background-color: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.joya:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

/* ===============================
   LAYOUT GENERAL
================================ */

.tienda-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 60px;
  background: radial-gradient(circle at top, #3b1b5a, #120018);
}

/* ===============================
   FILTRO COLECCIONES – PREMIUM
================================ */

.tienda-filtros {
  position: relative;
  padding: 28px 24px 32px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #3b145f, #1a0026) padding-box,
    linear-gradient(
      135deg,
      #b08d45,
      #f7e7b4,
      #d4b36a,
      #9c7c2f
    ) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 20px 40px rgba(90, 30, 140, 0.35),
    0 0 24px rgba(212, 179, 106, 0.25);
}

/* Título */
.tienda-filtros h3 {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 24px;
  color: #d4b36a;	
}

/* Ocultar checkbox real */
.tienda-filtros input[type="checkbox"] {
  display: none;
}

/* Item */
.filtro-item {
  display: block;
  cursor: pointer;
  padding: 10px 0;
}

/* Texto */
.filtro-item span {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: #cbbd8a;
  transition: color 0.25s ease;
}

/* Indicador joya */
.filtro-item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #9c7c2f;
  background: transparent;
  transform: translateY(-50%);
  transition: all 0.25s ease;
  opacity: 0.6;
}

/* Hover */
.filtro-item:hover span {
  color: #f7e7b4;
}

/* Activo */
.filtro-item input:checked + span {
  color: #fff4cc;              
  font-weight: 600;
}

/* Estado ACTIVO del filtro: Se aplica SOLO cuando el checkbox 
 * está marcado y modifica el indicador circular (::before) */
.filtro-item input:checked + span::before {
  /* Relleno con degradado radial para simular volumen de joya */
  background: radial-gradient(
    circle,
    #fff4cc,   /* centro claro (brillo) */
    #b08d45    /* borde dorado */
  );
  /* Aclara el borde del círculo para mayor contraste */
  border-color: #fff4cc;
  /* Mantiene el centrado vertical (-50%) y agranda el indicador para que el estado activo sea visible */
  transform: translateY(-50%) scale(1.8);
  /* Halo de luz dorado sutil (efecto brillo premium) */
  box-shadow: 0 0 8px rgba(247, 231, 180, 0.8);
  /* Totalmente visible (el estado normal es más opaco) */
  opacity: 1;
}

/* ===============================
   BOTÓN RESET FILTROS
================================ */

.boton-reset {
  margin-top: 18px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(230, 200, 122, 0.35);
  color: #e6c87a;
  font-size: 12px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.boton-reset:hover {
  background: rgba(255, 215, 130, 0.08); /* dorado muy sutil */
  color: #e6c87a;                        /* dorado apagado */
  border-color: rgba(255, 215, 130, 0.6);
}

/* BOTÓN RESET – ESTADO DESHABILITADO */
.boton-reset:disabled {
  opacity: 0.35;                 /* se apaga visualmente */
  cursor: not-allowed;           /* cursor prohibido */
  pointer-events: none;          /* no clickeable */
  filter: grayscale(100%);       /* quita el dorado */
}

/* Evita hover cuando está deshabilitado */
.boton-reset:disabled:hover {
  background: transparent;
  box-shadow: none;
}

/* ===============================
   GRILLA PRODUCTOS
================================ */
.joyas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ===============================
   PAGINACIÓN – ESTILO PREMIUM
================================ */

.paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 60px 0;
}

/* Botones base */
.paginacion .page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #e6c87a;
  background: rgba(255, 215, 120, 0.08);
  border: 1px solid rgba(255, 215, 120, 0.35);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

/* Hover */
.paginacion .page:hover {
  background: linear-gradient(
    135deg,
    #f5d889,
    #c9a44d
  );
  color: #1b1026;
  box-shadow:
    0 0 12px rgba(245, 216, 137, 0.65),
    0 0 28px rgba(245, 216, 137, 0.35);
  /*transform: translateY(-2px);*/
}

/* Página activa */
.paginacion .page.active {
  background: linear-gradient(
    135deg,
    #f8e3a1,
    #b8902f
  );
  color: #1b1026;
  font-weight: 600;
  pointer-events: none;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Flechas */
.paginacion .page.prev,
.paginacion .page.next {
  font-size: 18px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .paginacion {
    gap: 10px;
  }

  .paginacion .page {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ===============================
   CARD PRODUCTO
================================ */

.joya-card {
  display: flex;              /* organiza imagen + info en columna */
  flex-direction: column;
  gap: 16px;                  /* separación entre imagen e info */
  position: relative;
  border-radius: 10px;
  padding: 14px;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #3b145f, #1a0026) padding-box,
    linear-gradient(
      135deg,
      #b08d45,
      #f7e7b4,
      #d4b36a,
      #9c7c2f
    ) border-box;
  transition: box-shadow .3s ease;
}

.joya-card:hover {
  box-shadow:
    0 20px 40px rgba(90, 30, 140, 0.45),   /* sombra violeta */
    0 0 22px rgba(212, 179, 106, 0.25);   /* halo dorado */
}

/* ===============================
   IMAGEN
================================ */

.joya-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  /* FONDO CLARO */
  background:
    linear-gradient(#f6f3ec, #f6f3ec) padding-box,
    linear-gradient(135deg, #d4b36a, #f7e7b4, #b08d45) border-box;
}

.joya-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===============================
   INFO
================================ */

.joya-info {
  padding: 18px;
  min-height: 180px;              /* todas las cards misma altura */
  border-radius: 6px;
  background:
    linear-gradient(135deg, #c9a24d, #f5e6b8, #9c7c2f) padding-box;
  border: 1px solid transparent;
  display: flex;                 /* organiza el contenido interno */
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; /* evita que los hijos se estiren a todo el ancho */
}

.joya-info h3 {
  font-size: 18px;
  color: #2a1a08; /* marrón oscuro, lujo */
  font-weight: 600;
  line-height: 1.2;
  min-height: 44px; /* fuerza 2 líneas */
}

.joya-meta {
  font-size: 15px;
  color: #5a4a2a; /* dorado oscuro desaturado */
}

/* ===============================
   + BOTON INFO
================================ */

.more-info {
  display: inline-block;
  margin-top: 12px;	
  background: #1a0e08;
  color: #f5e6b8;
  border: 1px solid #9c7c2f;	
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.more-info:hover {
  opacity: 1;
}

/* ===============================
   TOOLTIP
================================ */

.tooltip {
  position: absolute;
  bottom: 12px;              
  left: 85px;        /* tooltip a la derecha del boton +info */
  width: 240px;
  padding: 12px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;	   
}

/* mostrar tooltip SOLO al hover de + Info */
.more-info:hover + .tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .joyas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .tienda-layout {
    grid-template-columns: 1fr;
  }

  .joyas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .joyas-grid {
    grid-template-columns: 1fr;
  }
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* PAGINA GUIA DE COMPRA */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.guia-compra-wrapper {
	background: radial-gradient(circle at top, #3b1d5a, #1a0f2e);
	padding: 30px 6% 80px;	
}

.guia-compra-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
}

.guia-compra-header h1 {
	color: #d4af37;
	font-size: 48px;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.guia-compra-header p {
	color: #d8d2e0;
	font-size: 16px;
	letter-spacing: 1px;
}

.guia-compra-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}

/* CARD */

.guia-card {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	background: linear-gradient(160deg, #2a1645, #140a24);
	border: 1px solid rgba(212, 175, 55, 0.65);	
	box-shadow: 0 30px 60px rgba(0,0,0,0.55);
	transition: 
		transform 0.5s cubic-bezier(.2,.8,.2,1),
		box-shadow 0.5s ease,
		border-color 0.5s ease;
}

.guia-card:hover {
	box-shadow:
		0 45px 90px rgba(0,0,0,0.85),
		0 0 0 1px rgba(212, 175, 55, 0.9);
	border-color: rgba(212, 175, 55, 0.95);
}

.guia-card:hover::before {
	opacity: 1;
}

.guia-card-image {
	padding: 14px;
	/*background: radial-gradient(circle at top, #2f1a4f, #12091f);*/
}

.guia-card-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	border-radius: 4px;
	border: 1px solid rgba(212,175,55,0.25);
	transition: transform 0.6s ease;
}

.guia-card-content {
	padding: 15px 30px;
}

.guia-card-content h2 {
	color: #d4af37;
	font-size: 20px;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.guia-card-content p {
	color: #d8d2e0;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* boton leer mas */
.guia-card-link {
	position: relative;
	display: inline-block;
	padding: 10px 28px;
	border: 1px solid #d4af37;
	color: #d4af37;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	background: transparent;
	overflow: hidden;
	transition:
		color 0.35s ease,
		box-shadow 0.4s ease;
}

/* capa de luz */
.guia-card-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 120%;
	height: 100%;
	background: linear-gradient(
    	120deg,                       /* Ángulo del gradiente.
                                     	 Define la inclinación del brillo.
                                     	 120deg = franja diagonal descendente
                                     	(no es movimiento, es orientación visual) */
    	transparent 0%,               /* Inicio totalmente transparente.
                                     	 Permite que el brillo entre de forma suave */
    	rgba(255, 255, 255, 0.35) 50%, /* Zona central del brillo.
                                     	  Simula el reflejo de luz sobre metal pulido.
                                     	  Opacidad baja para evitar efecto plástico */
    	transparent 100%              /* Fin transparente.
                                     	 Hace que el brillo se desvanezca al salir */
	);
	transition: transform 0.6s ease;
}

.guia-card-link:hover {
	color: #f6e7a9;
	box-shadow: 0 6px 18px rgba(212,175,55,0.3);
}

/* activa luz */
.guia-card-link:hover::before {
	transform: translateX(220%);
}

/* activa fondo */
.guia-card-link:hover::after {
	opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
	.guia-compra-grid {
		grid-template-columns: 1fr;
	}
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* TEMPLATE ARTICULO */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

body.page-template-page-article {
  background: #D9DADC;
}

body.page-template-page-article .article {
  /* max-width: limita el ancho máximo del artículo a 900 píxeles. */
  /* Desktop grande → queda centrado con márgenes */
  max-width: 900px;
  /* margin: Espacio entre el elemento y lo que lo rodea */
  /* separa el artículo de otros elementos */
  /* 40px arriba y abajo → separa del resto del layout */
  /* auto en izquierda y derecha centra horizontalmente el elemento, pero solo si: */
  /* el elemento es block (un <article> lo es) */
  /* y tiene un ancho limitado (width o max-width) */
  /* ej.: max-width: 900px; */
  /* Entonces el navegador: */
  /* calcula el espacio sobrante a la izquierda */
  /* calcula el espacio sobrante a la derecha */
  /* reparte ese espacio en partes iguales */
  /* Resultado: queda centrado. */
  margin: 40px auto;
  /* Pone fondo blanco al artículo. */
  background: #fff;
  /* padding: Espacio interno entre el borde y el contenido. */
  /* separa el texto del borde */
  padding: 40px;
}

/* pantallas chicas */
@media (max-width: 768px) {
  body.page-template-page-article .article {
    padding: 24px;
    margin: 20px;
  }
}

body.page-template-page-article .article-image {
	margin-bottom:32px;	
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* PAGINA NOSOTROS */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.about {
	background: radial-gradient(circle at top, #3b1d5a 0%, #1a0f2e 55%, #12091f 100%);
	padding: 30px 6% 80px;
}

/* ---------------- HERO ---------------- */

.about-hero {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 25px;
}

.about-hero h1 {
	color: #d4af37;
	font-size: 48px;
	letter-spacing: 4px;
	/*text-transform: uppercase;*/
	margin-bottom: 5px;
}

.about-hero p {
	color: #d8d2e0;
	font-size: 16px;
	letter-spacing: 1.5px;
}

/* ---------------- MAIN ---------------- */

.about-main {
	max-width: 1200px;
	margin: 0 auto 60px;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 70px;
	align-items: flex-start;
	margin-top: 40px;
}

/* TEXTO */

.about-text {
	margin-top: 25px;
	padding: 38px 42px;
	background: linear-gradient(
		145deg,
		rgba(255,255,255,0.07),
		rgba(255,255,255,0.02)
	);
	border-radius: 12px;
	position: relative;
	/* borde principal */
	border: 1px solid rgba(212,175,55,0.85);
	/* profundidad */
	box-shadow:
		0 35px 80px rgba(0,0,0,0.65),
		inset 0 0 0 1px rgba(212,175,55,0.18),
		inset 0 0 25px rgba(212,175,55,0.06);
}

.about-text::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(212,175,55,0.9),
		transparent
	);
}

.about-text p {
	color: #d8d2e0;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.6px;	
	margin-bottom: 22px;
	
}

.about-text strong {
	color: #d4af37;
	font-weight: 500;
}

/* VALORES */

.about-values {
	margin-top: 40px;
	gap: 40px;
	display: flex;	
	flex-wrap: wrap;
}

.about-values span {
	color: #d4af37;
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	position: relative;
	padding-left: 16px;
}

.about-values span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #d4af37;
	box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* ---------------- IMÁGENES ---------------- */
.about-image img,
.about-image-secondary img {
	width: 100%;
	display: block;
	border-radius: 8px;
	border: 1px solid rgba(212,175,55,0.95);
	box-shadow:
		0 40px 90px rgba(0,0,0,0.75),
		inset 0 0 0 1px rgba(212,175,55,0.2),
		inset 0 0 30px rgba(212,175,55,0.08);
}

/* IMAGEN PRINCIPAL */

.about-image-main img {
	height: 420px;
	object-fit: cover;
}

/* IMAGEN SECUNDARIA */

.about-image-secondary {
	max-width: 720px;
	margin: 0 auto 0px;
}

.about-image-secondary img {
	height: 260px;
	object-fit: cover;
	opacity: 0.95;
}

/* ---------------- NUESTROS VALORES ---------------- */

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* TARJETAS */
.value-card {
    padding: 28px 26px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(184,146,46,0.25);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.4),
        0 12px 30px rgba(0,0,0,0.12);
    text-align: center;
}

/* TÍTULO DEL VALOR */
.value-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.25em;
    margin: 0 0 12px;
    text-transform: uppercase;
    color: #7a5a1e;
}

/* TEXTO */
.value-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #3a2f1c;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 720px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
/* PAGINA CONTACTO */
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.contact-section {
    background: radial-gradient(circle at top, #3b1b5a 0%, #1a0f2e 60%, #120a1f 100%);   
    color: #e6e2ec;
	padding: 30px 6% 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    /* 2 columnas: texto | imagen */
    grid-template-columns: 1.1fr 0.9fr;
	/* espacio entre las columnas y filas */
    gap: 80px;
    align-items: center;
}

.contact-text h1 {
    font-size: 42px;
    color: #d4b26f;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-intro {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 60px;
    margin: 40px 0 50px;
}

.contact-block h3 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #d4b26f;
    margin-bottom: 8px;
}

.contact-block p {
    font-size: 15px;
    margin: 0;
    opacity: 0.95;
}

/* Responsive */

@media (max-width: 700px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

.contact-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #d4b26f;
    color: #d4b26f;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.contact-btn:hover {
    background: #d4b26f;
    color: #1a0f2e;
}

/* Imagen */

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    border-radius: 14px;
    /* Marco dorado sutil */
    box-shadow:
        0 0 0 1.5px rgba(212,178,111,0.55),
        inset 0 0 0 0.5px rgba(255,215,160,0.35),
        0 20px 60px rgba(0,0,0,0.45);
    background-clip: padding-box;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-section {
        padding: 90px 0;
    }

    .contact-text h1 {
        font-size: 34px;
    }
}

/* MODAL CONTACTO */

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    max-width: 460px;
    background: #1a0f2e;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(212,178,111,0.4);
    color: #e6e2ec;
}

.modal-box h2 {
    color: #d4b26f;
    margin-bottom: 15px;
}

.modal-box p {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: #120a1f;
    border: 1px solid rgba(212,178,111,0.3);
    color: #fff;
    border-radius: 8px;
}

.modal-form textarea {
    resize: none;
    height: 100px;
}

.modal-form button {
    width: 100%;
    padding: 14px;
    border: 1px solid #d4b26f;
    background: transparent;
    color: #d4b26f;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.modal-form button:hover {
    background: #d4b26f;
    color: #1a0f2e;
}

/* boton solicitar asesoramiento */
.btn-contact {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    border: 1px solid #d4b26f;
    background: transparent;
    color: #d4b26f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #d4b26f;
    color: #1a0f2e;
}

/* boton cerrar */
.btn-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #d4b26f;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

/* iconos */

.contact-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    color: rgba(212,178,111,0.85);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-data h3 {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.contact-data p {
    margin: 4px 0 0;
}

/* error */

.modal-form input.error,
.modal-form textarea.error {
    border-color: #e10600;
}

.modal-form input.error::placeholder,
.modal-form textarea.error::placeholder {
    color: #e10600;
}