:root {
    --color-brand: #9F6D4A;
    --color-brand-hover: #8b5d3c;
    --color-accent: #e1aa8c;
    --color-accent-soft: #fff3e9;
    --color-text-main: #726d6a;
    --color-text-dark: #333;
    --color-title: #8B4513;
    --color-bg-warm: #fffcf8;
    --font-sans: 'Muli-Light', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--color-text-dark);
    line-height: 1.6;
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a img {
    transition: all 0.5s ease-out;
}

body,
p,
span,
td,
th,
li,
a,
input,
textarea,
select {
    font-family: var(--font-sans);
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-title);
}

p {
    padding: 0.5em 0;
    color: var(--color-text-main);
}

.cormorant {
    font-family: 'Cormorant-Medium', serif;
    font-weight: 500;
}

.cormorant-italic {
    font-family: 'Cormorant-Italic', serif;
    font-style: italic;
}

.cormorant-medium-italic {
    font-family: 'Cormorant-MediumItalic', serif;
    font-weight: 500;
    font-style: italic;
}

.muli-light {
    font-family: 'Muli-Light', sans-serif;
    font-weight: 300;
}

.muli-semibold {
    font-family: 'Muli-SemiBold', sans-serif;
    font-weight: 600;
}

.muli-bold {
    font-family: 'Muli-Bold', sans-serif;
    font-weight: 700;
}

.sackers {
    font-family: 'Muli-Light', sans-serif;
    letter-spacing: 0.13em;
}

.revans {
    font-family: 'Muli-SemiBold', sans-serif;
}

.regular {
    font-family: 'Muli-Light', sans-serif;
}

.fila-flex {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.separador-seccion-2026 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.separador-seccion-2026 img {
    width: 36px;
    height: 36px;
    opacity: 0.85;
}

button {
    background-color: #f3c3a6;
    color: #333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:disabled {
    opacity: 0.2;
    cursor: default;
    background-color: transparent;
}

.boton-linea {
    background: #e1aa8c;
    border: 1px solid transparent;
    color: white;
    padding: 0.8em 2.5em;
    font-family: 'Muli-SemiBold', sans-serif;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.boton-linea:hover {
    background-color: #fff3e9;
    color: #8B4513;
    border: 1px solid #8B4513;
}

textarea,
input,
select {
    width: 100%;
    display: block;
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 1.1em;
    border-bottom: 1px solid #e1aa8c;
    box-sizing: border-box;
    padding: 10px;
    transition: border-color 0.3s, background-color 0.3s;
}

textarea {
    scrollbar-width: none;
    height: 43px;
    resize: none;
    max-height: 300px;
}

textarea::-webkit-scrollbar {
    width: 0;
    height: 0;
}

input,
select {
    margin: 20px 0;
    color: black;
}

input::placeholder,
textarea::placeholder {
    color: #505050;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: .65em auto;
    padding-right: 4rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-bottom: 1.5px solid #8B4513;
    background-color: #fffdfc;
    color: black;
}

form #ceremoniaslaicaswebsite {
    display: none;
}

.contacto-columnas {
    display: flex;
    gap: 25px;
    margin-bottom: 0;
}

.contacto-columnas input,
.contacto-columnas select {
    margin: 0 0 20px 0;
}

@media only screen and (max-width: 767px) {

    .contacto-columnas {
        flex-direction: column;
        gap: 0;
    }
}

#contacto-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#contacto-form .contacto-columnas {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    width: 100%;
}

#contacto-form .contacto-columnas .campo-grupo {
    flex: 1;
    min-width: 0;
}

#contacto-form .campo-grupo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
}

#contacto-form .label-form {
    display: none;
}

#contacto-form input,
#contacto-form textarea {
    width: 100%;
    padding: 10px;
    margin: 0 0 20px 0;
    border: none;
    border-bottom: 1px solid #e1aa8c;
    border-radius: 0;
    background-color: transparent;
    font-size: 1.1em;
    font-family: 'Muli-Light', sans-serif;
    color: black;
    box-sizing: border-box;
    transition: border-color 0.3s, background-color 0.3s;
}

#contacto-form textarea {
    min-height: 100px;
    resize: vertical;
    height: auto;
    scrollbar-width: none;
}

#contacto-form input:focus,
#contacto-form textarea:focus {
    outline: none;
    border-bottom: 1.5px solid #8B4513;
    background-color: #fffdfc;
    color: black;
}

#contacto-form input::placeholder,
#contacto-form textarea::placeholder {
    font-family: 'Muli-Light', sans-serif;
    font-style: normal;
    color: #505050;
    opacity: 1;
}

#boton-form {
    background: #e1aa8c;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 0;
    padding: .8em 2.5em;
    font-family: 'Muli-SemiBold', sans-serif;
    font-size: .9em;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

#boton-form:hover {
    background-color: #fff3e9;
    color: #8B4513;
    border: 1px solid #8B4513;
}

#boton-form:disabled {
    background-color: #dfd5cf;
    color: #8B4513;
    border: 1px solid transparent;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Booking Datepicker & Message Styles */
.booking-date-wrapper {
    position: relative;
    width: 100%;
}

.booking-date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #7f5334;
}

#booking-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

.success-message {
    color: #2e7d32;
    font-family: 'Muli-SemiBold', sans-serif;
}

.error-message {
    color: #c62828;
    font-family: 'Muli-SemiBold', sans-serif;
}

.recaptcha-disclaimer {
    font-size: 0.75rem !important;
    color: #726d6a;
    margin-top: 15px !important;
    line-height: 1.4 !important;
}

.recaptcha-disclaimer a {
    color: #7f5334 !important;
    text-decoration: underline !important;
}

#bloque-respuesta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

p.mensaje-ok {
    display: block;
    background-color: #fcf9f7;
    color: #9f6d4a;
    border: 1px solid #dfd5cf;
    padding: 12px 24px;
    font-family: 'Muli-Regular', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 4px;
    width: 100%;
}

#topbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f3e5db;
    color: #726D6A;
    min-height: auto;
    padding: 8px 0;
    font-size: 0.8rem;
    width: 100%;
}

#topbar .centro {
    color: #9F6D4A;
    font-family: 'Muli-SemiBold', sans-serif;
    letter-spacing: 1px;
}

#topbar a,
#topbar span {
    color: #726D6A;
}

#topbar a:hover {
    color: #8B4513;
}

#topbar .social-sep {
    opacity: 0.3;
}

#topbar a.email-protected img {
    filter: brightness(0.4) grayscale(1);
}

#topbar img {
    max-height: 1em;
}

#topbar a {
    color: white;
    font-size: .9rem;
    text-decoration: none;
}

.email-protected {
    text-decoration: none;
    color: inherit;
    display: inline;
}

.lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
    color: inherit;
    margin-right: 15px;
}

.lang-link {
    color: inherit;
    text-decoration: none;
    padding: 2px 4px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-link:hover {
    opacity: 1;
    color: #e1aa8c;
}

.lang-link.active {
    opacity: 1;
    border-bottom: 2px solid #e1aa8c;
    font-family: 'OpenSans-Bold', sans-serif;
}

header.header {
    background-color: #ffffff;
    min-height: auto;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

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

.logo-wrapper {
    flex-shrink: 0;
}

.logo-wrapper img.logo {
    height: auto;
    width: 220px;
    display: block;
}

[navegacion]#menu-principal nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
    align-items: center;
}

[navegacion]#menu-principal nav ul li {
    padding: 0;
    margin: 0;
    border: none;
}

[navegacion]#menu-principal nav ul li a {
    font-family: 'Muli-SemiBold', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: #1D1D1B;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

[navegacion]#menu-principal nav ul li a:hover {
    color: #8B4513;
    border-bottom: 2px solid #8B4513;
}

nav a.nav-active,
[navegacion] nav ul li.active a {
    border-bottom: 2px solid #9F6D4A;
    color: #9F6D4A;
}

[navegacion] nav ul li.active {
    border-bottom: none;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    padding-left: 16px;
    border-left: 1px solid #e1aa8c;
}

.header-social-link {
    display: flex;
    align-items: center;
    color: #726D6A;
    transition: color 0.2s, opacity 0.2s;
    opacity: 0.8;
}

.header-social-link:hover {
    color: #9F6D4A;
    opacity: 1;
}

.header-social-link img {
    filter: brightness(0.45) sepia(0.4);
    transition: filter 0.2s;
}

.header-social-link:hover img {
    filter: brightness(0.3) sepia(0.6) saturate(2);
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social-icons-mobile {
    display: none;
}

.menu-hamburguesa {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.menu-hamburguesa .barra {
    width: 100%;
    height: 2.5px;
    background-color: #e1aa8c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-hamburguesa .barra:nth-child(2) {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {

    [navegacion]#menu-principal {
        display: flex;
        align-items: center;
    }

    #topbar .fila-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    #topbar .columna {
        width: 33.33%;
        display: flex;
        align-items: center;
        padding: 0;
    }

    #topbar .columna:first-child {
        justify-content: flex-start;
    }

    #topbar .columna.centro {
        justify-content: center;
        text-align: center;
    }

    #topbar .columna.redes {
        justify-content: flex-end;
        gap: 8px;
    }
}

@media only screen and (min-width: 1240px) {

    header.header .header-container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {

    header.header {
        padding: 12px 0;
    }

    .logo-wrapper img.logo {
        width: 170px;
    }

    .menu-hamburguesa {
        display: flex;
        position: relative;
        top: auto;
        right: auto;
    }

    .header-social-icons-mobile {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-right: 15px;
    }

    .header-social-link-mob {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.9;
        transition: opacity 0.2s, transform 0.2s;
    }

    .header-social-link-mob:hover {
        opacity: 1;
        transform: scale(1.08);
    }

    .header-social-link-mob img {
        filter: none !important;
        display: block;
    }

    .separador-punto {
        color: #9f6d4a;
        font-size: 1rem;
        margin: 0 3px;
        user-select: none;
    }

    [navegacion]#menu-principal {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #f3e5db;
        border-bottom: 1px solid #f3e5db;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 99;
    }

    header.header.menu-abierto [navegacion]#menu-principal {
        display: block;
    }

    [navegacion]#menu-principal nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    [navegacion]#menu-principal nav ul li a {
        display: block;
        padding: 10px 20px;
        font-size: 1rem;
    }

    header.header.menu-abierto .menu-hamburguesa .barra:nth-child(1) {
        transform: translateY(9.75px) rotate(45deg);
    }

    header.header.menu-abierto .menu-hamburguesa .barra:nth-child(2) {
        opacity: 0;
    }

    header.header.menu-abierto .menu-hamburguesa .barra:nth-child(3) {
        transform: translateY(-9.75px) rotate(-45deg);
    }
}

@media only screen and (max-width: 767px) {

    .header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo-wrapper img.logo {
        width: 200px;
    }

    .header-social-icons {
        display: none;
    }

    #menu-principal {
        display: none;
    }

    header.header.menu-abierto #menu-principal {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lang-selector {
        margin-right: 5px;
        font-size: 0.8em;
    }

    #topbar .header-container.fila-flex {
        flex-direction: row;
        justify-content: space-between;
        display: flex;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    #topbar .columna {
        width: auto;
    }

    #topbar .columna.centro {
        display: none;
    }
}

@media only screen and (max-width: 480px) {

    .logo-wrapper img.logo {
        width: 150px;
    }

    .header-social-icons-mobile {
        gap: 3px;
        margin-right: 6px;
    }

    .header-social-link-mob img {
        width: 17px;
        height: 17px;
    }

    .separador-punto {
        margin: 0 1px;
    }
}

.hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 40px);
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
    min-height: 520px;
}

@media only screen and (min-width: 768px) {

    .hero {
        height: 520px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

#hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 0;
}

.rama-decorativa-hero {
    display: block;
    margin: 0 auto 24px auto;
    width: 220px;
    height: auto;
    max-width: 90%;
}

.title-light {
    color: #ffffff;
    font-family: 'Muli-SemiBold', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}

p.text-light,
.text-light {
    color: #ffffff;
    font-family: 'Muli-SemiBold', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
}

.cta-hero.boton-linea {
    position: relative;
    font-family: 'Cormorant-Medium', serif;
    font-style: normal;
    font-size: 1.35rem;
    font-weight: 500;
    padding: 18px 40px;
    text-transform: none;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 280px;
    text-align: center;
    border: none;
    z-index: 1;
}

.cta-hero.boton-linea::before,
.cta-hero.boton-linea::after {
    content: '';
    position: absolute;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.cta-hero.boton-linea::before {
    top: -6px;
    left: -6px;
    right: 25px;
    bottom: 25px;
    border-top: 1.5px solid #e1aa8c;
    border-left: 1.5px solid #e1aa8c;
}

.cta-hero.boton-linea::after {
    top: 25px;
    left: 25px;
    right: -6px;
    bottom: -6px;
    border-bottom: 1.5px solid #e1aa8c;
    border-right: 1.5px solid #e1aa8c;
}

.cta-hero.boton-linea:first-child {
    background-color: #ffffff;
    color: #9F6D4A;
}

.cta-hero.boton-linea:first-child:hover {
    background-color: #9F6D4A;
    color: #ffffff;
}

.cta-hero.boton-linea:first-child:hover::before,
.cta-hero.boton-linea:first-child:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-color: #ffffff;
}

.cta-hero.boton-linea:last-child {
    background-color: #9F6D4A;
    color: #ffffff;
}

.cta-hero.boton-linea:last-child:hover {
    background-color: #ffffff;
    color: #9F6D4A;
}

.cta-hero.boton-linea:last-child:hover::before,
.cta-hero.boton-linea:last-child:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-color: #9F6D4A;
}

@media only screen and (max-width: 767px) {

    .hero {
        min-height: 480px;
        height: auto;
        width: calc(100% - 30px);
        padding: 3rem 1.5rem;
    }

    .title-light {
        font-size: 2.2rem;
    }

    .text-light {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-hero.boton-linea {
        width: 100%;
        max-width: 280px;
    }

    .cta-hero.boton-linea::before,
    .cta-hero.boton-linea::after {
        display: none;
    }

    .cta-hero.boton-linea:first-child {
        border: 1.5px solid #e1aa8c;
    }

    .cta-hero.boton-linea:last-child {
        border: 1.5px solid rgba(255, 255, 255, 0.4);
    }
}

.seccion-lado {
    padding: 15px 0;
}

.bg-warm {
    background-color: #ffffff;
}

.seccion-lado .dos-columnas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.seccion-lado .col {
    flex: 1;
}

.seccion-lado h2 {
    font-size: 2.2rem;
    color: #000000;
    line-height: 1.15;
    margin-bottom: 15px;
}

.seccion-lado .texto-bajada {
    font-size: 1.6rem;
    color: #7f5334;
    margin-bottom: 30px;
    line-height: 1.4;
}

.seccion-lado .texto p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #726d6a;
    margin-bottom: 20px;
    text-align: justify;
}

.seccion-lado .texto p:last-child {
    margin-bottom: 0;
}

.seccion-lado .imgdeco {
    margin-bottom: 15px;
}

.imgdeco img {
    width: 4em;
    height: auto;
}

@media only screen and (max-width: 991px) {

    .seccion-lado {
        padding: 60px 0;
    }

    .seccion-lado .dos-columnas {
        flex-direction: column;
        gap: 40px;
    }

    .seccion-lado h2 {
        font-size: 2.2rem;
    }

    .seccion-lado .texto-bajada {
        font-size: 1.15rem;
    }
}

.collage-fotos-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.collage-fotos-2026 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #e1aa8c;
    box-shadow: 0 8px 24px rgba(127, 83, 52, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.collage-fotos-2026 img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(127, 83, 52, 0.15);
}

.collage-fotos-2026 .foto-c-1 {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    aspect-ratio: 4/5;
}

.collage-fotos-2026 .foto-c-2 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    aspect-ratio: 1/1;
}

.collage-fotos-2026 .foto-c-3 {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    aspect-ratio: 4/5;
}

.collage-fotos-2026 .foto-c-4 {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    aspect-ratio: 3/2;
}

.circulo-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.circular-doble {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 0 10px 30px rgba(127, 83, 52, 0.1);
    outline: 2px solid #e1aa8c;
    outline-offset: 6px;
}

@media only screen and (max-width: 767px) {

    .collage-fotos-2026 {
        gap: 10px;
    }

    .circular-doble {
        width: 280px;
        height: 280px;
        outline-offset: 4px;
        border-width: 4px;
    }
}

.contenedor-caracteristicas {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.titulo-pre-caracteristicas {
    text-align: center;
    font-family: 'Cormorant-Italic', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #cda287;
    margin: 0 auto 30px auto;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
    margin-bottom: 20px;
}

.caracteristica-item {
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.caracteristica-item .caracteristica-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.caracteristica-text {
    flex: 1;
}

.caracteristica-item h4 {
    font-size: 1.8rem;
    color: #2a2a2a;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.caracteristica-item p {
    font-size: 1.2rem;
    line-height: 1.45;
    color: #726d6a;
    margin: 0;
}

.tabla-comparativa {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border: 1px solid #e1aa8c;
}

.tabla-comparativa th,
.tabla-comparativa td {
    padding: 18px 20px;
    text-align: left;
    border: 1px solid #e1aa8c;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tabla-comparativa th {
    background-color: #fff3e9;
    color: #8B4513;
    font-size: 0.85rem;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.tabla-comparativa td strong {
    font-family: 'Muli-SemiBold', sans-serif;
    color: #333;
}

.tabla-comparativa .col-highlight {
    background-color: #fffcf8;
    border-left: 2px solid #8B4513;
    border-right: 2px solid #8B4513;
    font-family: 'Muli-SemiBold', sans-serif;
}

.tabla-comparativa tr:hover td {
    background-color: #fffcf9;
}

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

.comparativa-tarjetas-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tarjeta-comparativa {
    background: white;
    border: 1px solid #e1aa8c;
    padding: 25px;
    border-radius: 0;
}

.tarjeta-comparativa.destaque {
    border: 2px solid #8B4513;
    background-color: #fffcf8;
    position: relative;
}

@media only screen and (max-width: 767px) {

    .contenedor-caracteristicas {
        margin-top: 35px;
    }

    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .titulo-pre-caracteristicas {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

.faq-cabecera {
    text-align: center;
    margin-bottom: 40px;
}

.faq-titulo-contenedor {
    position: relative;
    display: inline-block;
}

.faq-titulo-contenedor h2 {
    font-size: 2.8rem;
    color: #8B4513;
    line-height: 1.2;
    margin: 0;
}

.faq-titulo-contenedor .imgdeco {
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.faq-titulo-contenedor .imgdeco img {
    width: 80px;
    height: auto;
    display: block;
}

@media only screen and (max-width: 767px) {

    .faq-titulo-contenedor {
        display: block;
    }

    .faq-titulo-contenedor .imgdeco {
        position: static;
        transform: none;
        margin: 0 auto 15px auto;
        display: flex;
        justify-content: center;
    }

    .faq-titulo-contenedor .imgdeco img {
        width: 60px;
    }
}

.faq-contenido-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.texto-introductorio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.acordeon-faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-cta-wrapper {
    text-align: center;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    border-top: none;
}

.faq-item {
    border: none;
    background: #ffffff;
    padding: 0;
    margin-bottom: 18px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item summary {
    display: flex;
    align-items: center;
    padding: 20px 25px 20px 75px;
    font-family: 'Muli-Bold', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    position: relative;
    background: #de9f7f;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 54px;
    background-color: rgba(255, 255, 255, 0.08);
    border-right: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: background-color 0.3s ease;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    left: 0;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Muli-Bold', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    z-index: 2;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item summary:hover {
    background: #d49372;
}

.faq-item>*:not(summary) {
    padding: 25px 30px;
    margin-top: 0;
    border: none;
    border-bottom: 1.5px solid #f3e5db;
    background-color: #ffffff;
}

.faq-item>*:not(summary),
.faq-item .faq-respuesta,
.faq-item p {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.8;
}

.seccion-contacto {
    padding: 100px 0;
    background-color: #ffffff;
}

.seccion-contacto .dos-columnas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.seccion-contacto .col {
    flex: 1;
}

.contacto-titulo-contenedor {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {

    .contacto-titulo-contenedor {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
    }

    .contacto-titulo-rama img {
        width: 50px;
        margin: 0 auto;
    }
}

.contacto-titulo-texto {
    flex: 1;
}

.contacto-titulo-rama img {
    width: 70px;
    height: auto;
    display: block;
}

.contacto-titulo-texto h2 {
    font-size: 2.3rem;
    font-family: 'Muli', sans-serif;
    font-weight: 300;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.contacto-titulo-texto .texto-bajada {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #b38269;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 0;
}

.info-adicional {
    margin-top: 30px;
    margin-bottom: 40px;
}

.info-adicional p {
    font-family: 'Muli-Bold', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #726d6a;
}

.info-adicional p:last-child {
    margin-bottom: 0;
}

.correo-contacto,
.correo-contacto a,
.correo-contacto strong {
    font-family: 'Muli-Bold', sans-serif;
    font-weight: 700;
    color: #726d6a;
}

.redes-siguenos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #9f6d4a;
    margin-top: 35px;
}

.redes-siguenos h4 {
    font-family: 'Muli-SemiBold', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.redes-iconos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.redes-iconos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #9f6d4a;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s;
}

.redes-iconos a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.redes-iconos a:hover {
    background-color: #fff3e9;
    border-color: #9f6d4a;
}

@media only screen and (max-width: 991px) {

    .seccion-contacto {
        padding: 60px 0;
    }

    .seccion-contacto .dos-columnas {
        flex-direction: column;
        gap: 40px;
    }

    .campo-grupo {
        margin-bottom: 20px;
    }
}

.footer-v2 {
    margin-top: 0;
    width: 100%;
    padding: 0 !important;
}

.footer-v2-top {
    background-color: #f7f6f5;
    padding: 50px 0;
    border-bottom: 1px solid #e5e0dc;
}

.footer-v2-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    align-items: center;
    gap: 40px;
}

.footer-v2-top-col {
    display: flex;
    flex-direction: column;
}

.footer-v2-siguenos {
    align-items: center;
}

.footer-titulo-seccion {
    font-size: 1.4rem;
    color: #1a1a1a;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.redes-sociales-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.redes-sociales-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.redes-sociales-wrapper a:hover {
    transform: scale(1.1);
}

.separador-redes {
    color: #9f6d4a;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-v2-isotipo {
    align-items: center;
    justify-content: center;
}

.footer-v2-isotipo img {
    max-width: 100px;
    height: auto;
}

.footer-v2-newsletter .footer-titulo-seccion {
    text-align: left;
}

.newsletter-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: normal;
    font-size: 0.95rem;
    color: #b38269;
    margin: 0 0 15px;
    padding: 0;
    line-height: 1.3;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid #726d6a;
    padding-bottom: 6px;
}

.newsletter-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    width: 100%;
    padding: 4px 0;
    margin: 0;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: #726d6a;
    opacity: 0.9;
}

.newsletter-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.newsletter-btn:hover {
    transform: scale(1.1);
}

.footer-v2-middle {
    background-color: #9f6d4a;
    color: #ffffff;
    padding: 55px 0 50px;
}

.footer-v2-middle-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 1.25fr 1.25fr;
    gap: 30px;
    align-items: start;
}

.footer-v2-mid-col {
    display: flex;
    flex-direction: column;
}

.footer-mid-titulo {
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 12px;
}

.footer-mid-titulo::after {
    content: '';
    display: block;
    width: 45px;
    height: 0.5px;
    background-color: #ffffff;
    margin-top: 8px;
}

.footer-v2-desc {
    color: #ffffff;
    font-family: 'Muli-Light', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 20px;
    padding: 0;
}

.footer-v2-logo-blanco {
    display: block;
    margin-top: 0;
}

.footer-v2-logo-blanco img {
    max-width: 210px;
    height: auto;
}

.footer-v2-list,
.footer-v2-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Muli-Bold', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-v2-list li,
.footer-v2-menu-list li {
    color: #ffffff;
    line-height: 1.5;
    font-family: 'Muli-Light', sans-serif;
    font-weight: 700;
}

.footer-v2-list a,
.footer-v2-menu-list a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
    font-family: 'Muli-Light', sans-serif;
    font-weight: 700;
}

.footer-v2-list a:hover,
.footer-v2-menu-list a:hover {
    opacity: 0.85;
}

.footer-v2-list {
    margin-bottom: 0;
}

.logos-patrocinio-row,
.logos-capacitacion-row,
.logos-encuentranos-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.logos-patrocinio-row,
.logos-capacitacion-row {
    margin-bottom: 22px;
}

.logo-box {
    background-color: #ffffff;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: 130px;
    height: 50px;
    box-sizing: border-box;
}

.logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.logo-box-nupcia {
    background-color: #ffffff;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: 130px;
    height: 50px;
    box-sizing: border-box;
}

.logo-box-nupcia img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.logo-box a,
.logo-box-nupcia a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.footer-v2-credits {
    background-color: #ffffff;
    color: #726d6a;
    padding: 22px 0;
    border-top: 1.5px solid #dfd5cf;
}

.footer-v2-credits-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy-text,
.footer-diseno-text,
.footer-legal-links {
    font-family: 'Muli-Bold', sans-serif;
    font-size: 0.85rem;
    color: #726d6a;
    margin: 0;
    padding: 0;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a {
    color: #726d6a;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Muli-Bold', sans-serif;
    font-weight: 700;
}

.footer-legal-links a:hover {
    color: #9f6d4a;
    text-decoration: underline;
}

.separador-legal {
    color: #9f6d4a;
    font-size: 0.85rem;
    user-select: none;
}

@media only screen and (max-width: 1080px) and (min-width: 768px) {
    .footer-v2-middle-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 50px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-v2-top-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-v2-newsletter .footer-titulo-seccion {
        text-align: center;
    }

    .newsletter-input-group {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer-v2-middle-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-mid-titulo::after {
        margin: 8px auto 0;
    }

    .footer-v2-logo-blanco {
        text-align: center;
        margin-top: 20px;
    }

    .footer-v2-logo-blanco img {
        margin: 0 auto;
    }

    .footer-v2-list,
    .footer-v2-menu-list {
        align-items: center;
        text-align: center;
    }

    .logos-patrocinio-row,
    .logos-capacitacion-row,
    .logos-encuentranos-row {
        justify-content: center;
    }

    .footer-v2-credits-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-legal-links {
        font-size: 0.78rem;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal-links a {
        font-size: 0.78rem;
    }
}

#google_translate_element {
    display: none;
}