/* =====================================================================
   Comfort Cabo — Página de bodas (bodas.html)
   Usa los tokens de brand.css
   ===================================================================== */

.wed-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background: var(--cc-grad-navy);
    overflow: hidden;
}
.wed-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("media/fleet-7.webp") center/cover no-repeat;
    opacity: .22;
}
.wed-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.wed-eyebrow {
    display: inline-block;
    letter-spacing: 4px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cc-gold);
    border: 1px solid rgba(201, 162, 39, .55);
    border-radius: 999px;
    padding: 7px 20px;
    margin-bottom: 22px;
}
.wed-hero h1 {
    color: #fff;
    font-family: var(--cc-font-head);
    font-size: clamp(2rem, 5.2vw, 3.35rem);
    line-height: 1.18;
    margin: 0 0 18px;
    font-weight: 600;
}
.wed-hero h1 em { color: var(--cc-turquoise-light); font-style: normal; }
.wed-hero p {
    color: #D6E2EC;
    font-size: clamp(1rem, 2.2vw, 1.14rem);
    line-height: 1.75;
    margin: 0 auto 30px;
    max-width: 610px;
}
.wed-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wed-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 32px; border-radius: var(--cc-radius);
    font-family: var(--cc-font-head); font-weight: 600; font-size: .97rem;
    text-decoration: none; border: 1.6px solid transparent;
    transition: transform .2s ease, filter .2s ease, background .2s ease, color .2s ease;
}
.wed-btn:hover { transform: translateY(-2px); }
.wed-btn-primary { background: var(--cc-grad-primary); color: #fff; }
.wed-btn-primary:hover { filter: brightness(1.09); }
.wed-btn-ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.wed-btn-ghost:hover { background: #fff; color: var(--cc-navy); }

.wed-section { padding: 74px 20px; }
.wed-section.alt { background: var(--cc-gray-50); }
.wed-wrap { max-width: 1160px; margin: 0 auto; }
.wed-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.wed-head h2 {
    font-family: var(--cc-font-head);
    font-size: clamp(1.6rem, 3.6vw, 2.25rem);
    color: var(--cc-navy);
    margin: 0 0 14px;
    font-weight: 600;
}
.wed-head .rule {
    width: 62px; height: 2px; background: var(--cc-gold);
    margin: 0 auto 18px; border: 0;
}
.wed-head p { color: var(--cc-gray-600); line-height: 1.75; margin: 0; font-size: 1.02rem; }

.wed-grid { display: grid; gap: 22px; }
.wed-grid.g3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.wed-grid.g4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

.wed-card {
    background: #fff;
    border: 1px solid var(--cc-gray-300);
    border-radius: var(--cc-radius-lg);
    padding: 30px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cc-shadow-lg);
    border-color: var(--cc-turquoise);
}
.wed-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cc-turquoise-soft);
    color: var(--cc-turquoise-dark);
    font-size: 1.32rem;
    margin-bottom: 18px;
}
.wed-card h3 {
    font-family: var(--cc-font-head);
    font-size: 1.11rem; color: var(--cc-navy);
    margin: 0 0 10px; font-weight: 600;
}
.wed-card p { color: var(--cc-gray-600); line-height: 1.72; margin: 0; font-size: .94rem; }

/* Flota */
.wed-fleet-card { text-align: center; padding: 28px 20px; }
.wed-fleet-card .cap {
    display: inline-block; margin-top: 12px; padding: 5px 15px;
    border-radius: 999px; background: var(--cc-navy); color: #fff;
    font-size: .8rem; font-weight: 600; letter-spacing: .4px;
}
.wed-fleet-card .use {
    display: block; margin-top: 12px; font-size: .87rem;
    color: var(--cc-gray-600); line-height: 1.6;
}

/* Pasos */
.wed-steps { counter-reset: paso; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.wed-step { position: relative; padding: 30px 24px 26px; background: #fff; border: 1px solid var(--cc-gray-300); border-radius: var(--cc-radius-lg); }
.wed-step::before {
    counter-increment: paso; content: counter(paso, decimal-leading-zero);
    display: block; font-family: var(--cc-font-head); font-size: 1.8rem;
    font-weight: 600; color: var(--cc-gold); line-height: 1; margin-bottom: 12px;
}
.wed-step h4 { font-family: var(--cc-font-head); font-size: 1.03rem; color: var(--cc-navy); margin: 0 0 8px; font-weight: 600; }
.wed-step p { color: var(--cc-gray-600); font-size: .92rem; line-height: 1.7; margin: 0; }

/* Formulario */
.wed-form-shell {
    background: var(--cc-grad-navy);
    border-radius: 22px;
    padding: 46px 40px;
    box-shadow: var(--cc-shadow-lg);
}
.wed-form-shell .wed-head h2 { color: #fff; }
.wed-form-shell .wed-head p { color: #C4D3E0; }
.wed-form-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.wed-field { display: flex; flex-direction: column; gap: 7px; }
.wed-field.full { grid-column: 1 / -1; }
.wed-field label { color: #D6E2EC; font-size: .87rem; font-weight: 500; letter-spacing: .3px; }
.wed-field label .req { color: var(--cc-gold); }
.wed-field input,
.wed-field select,
.wed-field textarea {
    width: 100%; box-sizing: border-box;
    padding: 13px 15px; border-radius: var(--cc-radius);
    border: 1.5px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .07);
    color: #fff; font-size: .96rem; font-family: inherit;
    transition: border-color .2s ease, background .2s ease;
}
.wed-field textarea { min-height: 108px; resize: vertical; }
.wed-field input::placeholder, .wed-field textarea::placeholder { color: #8FA5B8; }
.wed-field input:focus, .wed-field select:focus, .wed-field textarea:focus {
    outline: none; border-color: var(--cc-turquoise); background: rgba(255, 255, 255, .12);
}
.wed-field select option { background: var(--cc-navy); color: #fff; }
.wed-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.wed-check {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 999px; cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, .22);
    color: #D6E2EC; font-size: .88rem;
    transition: all .2s ease;
}
.wed-check input { accent-color: var(--cc-turquoise); width: 16px; height: 16px; }
.wed-check:has(input:checked) { border-color: var(--cc-turquoise); background: rgba(23, 162, 184, .18); color: #fff; }
.wed-submit {
    width: 100%; margin-top: 8px; padding: 16px;
    border: 0; border-radius: var(--cc-radius);
    background: var(--cc-grad-primary); color: #fff;
    font-family: var(--cc-font-head); font-size: 1.02rem; font-weight: 600;
    cursor: pointer; transition: filter .2s ease, transform .2s ease;
}
.wed-submit:hover:not(:disabled) { filter: brightness(1.09); transform: translateY(-2px); }
.wed-submit:disabled { opacity: .6; cursor: not-allowed; }
.wed-note { color: #9FB3C4; font-size: .84rem; text-align: center; margin: 14px 0 0; line-height: 1.65; }
.wed-msg { margin-top: 18px; padding: 15px 18px; border-radius: var(--cc-radius); font-size: .93rem; display: none; line-height: 1.6; }
.wed-msg.ok { display: block; background: rgba(22, 163, 74, .16); border: 1px solid #16A34A; color: #BBF7D0; }
.wed-msg.err { display: block; background: rgba(239, 68, 68, .16); border: 1px solid #EF4444; color: #FECACA; }

/* FAQ */
.wed-faq { max-width: 820px; margin: 0 auto; }
.wed-faq details {
    border: 1px solid var(--cc-gray-300); border-radius: var(--cc-radius);
    background: #fff; margin-bottom: 12px; overflow: hidden;
}
.wed-faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-family: var(--cc-font-head); font-weight: 600; color: var(--cc-navy);
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    font-size: .99rem;
}
.wed-faq summary::-webkit-details-marker { display: none; }
.wed-faq summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--cc-turquoise); font-size: .8rem; transition: transform .25s ease; }
.wed-faq details[open] summary::after { transform: rotate(180deg); }
.wed-faq .ans { padding: 0 22px 20px; color: var(--cc-gray-600); line-height: 1.75; font-size: .94rem; }

/* Cierre */
.wed-cta { background: var(--cc-navy-deep); text-align: center; padding: 66px 20px; }
.wed-cta h2 { color: #fff; font-family: var(--cc-font-head); font-size: clamp(1.5rem, 3.4vw, 2.05rem); margin: 0 0 14px; font-weight: 600; }
.wed-cta p { color: #B8C9D8; margin: 0 auto 28px; max-width: 540px; line-height: 1.75; }

@media (max-width: 640px) {
    .wed-hero { min-height: 400px; padding: 70px 18px; }
    .wed-section { padding: 54px 18px; }
    .wed-form-shell { padding: 32px 22px; border-radius: 16px; }
    .wed-btn { width: 100%; justify-content: center; }
    .wed-hero-actions { flex-direction: column; }
}
