/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.rl {
    transform: translateX(-40px);
}
.reveal.rr {
    transform: translateX(40px);
}
.reveal.rs {
    transform: scale(0.93) translateY(20px);
}
.reveal.visible {
    opacity: 1 !important;
    transform: none !important;
}
.rd1 {
    transition-delay: 0.1s;
}
.rd2 {
    transition-delay: 0.2s;
}
.rd3 {
    transition-delay: 0.3s;
}

/* SHARED */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--orange);
}
.sec-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
}
.sec-title em {
    font-style: italic;
    color: var(--orange);
}

/* PAGE HERO */
.page-hero {
    padding: 9rem 0 5rem;
   background:
    radial-gradient(ellipse 85% 65% at 75% 35%, rgba(255, 176, 102, 0.4) 0%, transparent 70%), 
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(255, 176, 102, 0.2) 0%, transparent 60%), 
    linear-gradient(160deg, 
      var(--orange) 0%, 
      var(--orange) 55%, 
      var(--orange-deep) 85%, 
      var(--orange-dark) 100%
    );
    position: relative;
    overflow: hidden;
}
.page-hero-dots {
    position: absolute;
    inset: 0;
   background-image: radial-gradient(circle, rgba(255, 176, 102, .8) 1px, transparent 1px);
    background-size: 30px 30px;
}
.page-hero-glow1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.15) 0%,
        transparent 70%
    );
    top: -100px;
    right: 10%;
    pointer-events: none;
}
.page-hero-glow2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.08) 0%,
        transparent 70%
    );
    bottom: -80px;
    left: 5%;
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: #fff;
}
.page-hero h1 span {
    color: var(--orange-dark);
}
.page-hero-sub {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    max-width: 480px;
    margin-top: 1.2rem;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}
.page-breadcrumb a {
    color: var(--orange-dark);
    text-decoration: none;
}

/* CONTACT MAIN */
.contact-main {
    padding: 5rem 0 6rem;
    background: var(--white);
}

/* FORM */
.form-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem 2.8rem;
    border: 1.5px solid var(--grey-light);
    box-shadow: var(--shadow);
}
.form-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.8rem;
}
.form-section-title em {
    font-style: italic;
    color: var(--orange);
}
.fgroup {
    margin-bottom: 1.4rem;
}
.flabel {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.4rem;
}
.fcontrol {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
    outline: none;
    resize: vertical;
    appearance: none;
}
.fcontrol:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}
.fcontrol::placeholder {
    color: var(--grey-light);
}
.fcontrol.is-err {
    border-color: #dc2626;
}
.ferr {
    font-size: 0.73rem;
    color: #dc2626;
    margin-top: 0.3rem;
    display: none;
}
.ferr.show {
    display: block;
}
.fcontrol.is-ok {
    border-color: #16a34a;
}

/* Radio chips for tipo */
.radio-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.radio-chip input {
    display: none;
}
.radio-chip label {
    padding: 0.45rem 1rem;
    border-radius: 40px;
    border: 1.5px solid var(--grey-light);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--grey);
    cursor: pointer;
    transition:
        background var(--tr),
        color var(--tr),
        border-color var(--tr);
    user-select: none;
}
.radio-chip input:checked + label {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.radio-chip label:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Submit button */
.btn-submit-gc {
    width: 100%;
    padding: 1.1rem;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition:
        background 0.3s,
        transform 0.2s,
        box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.btn-submit-gc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-submit-gc:hover::before {
    opacity: 1;
}
.btn-submit-gc:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
}
.btn-submit-gc span,
.btn-submit-gc i {
    position: relative;
    z-index: 1;
}
.btn-submit-gc.success {
    background: #16a34a !important;
}
.btn-submit-gc.success::before {
    opacity: 0 !important;
}

/* Privacy note */
.privacy-note {
    font-size: 0.75rem;
    color: var(--grey);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}
.privacy-note i {
    color: var(--orange);
}

/* INFO COLUMN */
.info-col {
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.info-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem 2rem;
    border: 1.5px solid var(--grey-light);
    margin-bottom: 1.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}
.info-item:hover .info-icon {
    background: var(--orange);
}
.info-item:hover .info-icon i {
    color: #fff !important;
}
.info-icon i {
    color: var(--orange);
    font-size: 1.15rem;
    transition: color 0.3s;
}
.info-text strong {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.15rem;
}
.info-text span {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
}
.info-text a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}
.info-text a:hover {
    text-decoration: underline;
}

/* Hours table */
.hours-table {
    width: 100%;
    font-size: 0.82rem;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.hours-table td {
    padding: 0.35rem 0;
    color: var(--grey);
}
.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--dark);
}
.hours-table tr.open td {
    color: var(--orange-dark);
}
.hours-table tr.open td:last-child {
    color: var(--orange);
}

/* MAP */
.map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--grey-light);
    position: relative;
}
.map-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}
.map-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}
.map-img-wrap:hover img {
    transform: scale(1.04);
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 10, 0, 0.5) 0%,
        transparent 50%
    );
}
.map-pin-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.map-pin-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid #fff;
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.2);
    animation: mapPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.2);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(249, 115, 22, 0.06);
    }
}
.map-label {
    background: #fff;
    border-radius: 8px;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}
.map-label i {
    color: var(--orange);
    margin-right: 0.25rem;
}
.map-card-footer {
    background: var(--cream);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.map-card-footer span {
    font-size: 0.82rem;
    color: var(--grey);
}
.map-card-footer a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.map-card-footer a:hover {
    color: var(--orange-dark);
}

/* Social bar */
.social-bar {
    background: var(--orange);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
}
.social-bar h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.soc-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition:
        background 0.3s,
        transform 0.2s;
}
.soc-link:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    color: #fff;
}
.soc-link i {
    font-size: 1rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--cream);
}
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--grey-light);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}
.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: var(--shadow);
}
.faq-q {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    user-select: none;
    gap: 1rem;
}
.faq-q i {
    color: var(--orange);
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-q i {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding 0.4s;
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.75;
    padding: 0 1.5rem;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.4rem;
}
.faq-item.open .faq-q {
    color: var(--orange);
}

/* TOAST */
#toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 5000;
    background: var(--dark);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-left: 4px solid #16a34a;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.9rem;
    white-space: nowrap;
}
#toast.show {
    transform: translateX(-50%) translateY(0);
}
#toast .ti {
    color: #16a34a;
    font-size: 1.2rem;
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 4rem 0 1.8rem;
}
.foot-brand {
    font-family: var(--font-hero);
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #fff;
    display: block;
    margin-bottom: 0.3rem;
}
.foot-tag {
    font-size: 0.78rem;
    color: var(--grey);
    letter-spacing: 0.08em;
}
.foot-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin-top: 1rem;
    max-width: 260px;
    line-height: 1.7;
}
.foot-h {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.1rem;
    font-weight: 600;
}
.foot-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot-links li {
    margin-bottom: 0.55rem;
}
.foot-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition:
        color 0.3s,
        padding-left 0.3s;
    display: inline-block;
}
.foot-links a:hover {
    color: #fff;
    padding-left: 5px;
}
.foot-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.5rem;
}
.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s,
        transform 0.2s;
}
.soc-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-3px);
}
.foot-div {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 2.2rem 0 1.4rem;
}
.foot-bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.foot-bottom a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}
.foot-bottom a:hover {
    color: #fff;
}
#btt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.3s,
        transform 0.3s;
    font-size: 1.1rem;
}
#btt.visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
#btt:hover {
    background: var(--orange-dark);
}
@media (max-width: 991.98px) {
    .info-col {
        padding-left: 0;
        margin-top: 2.5rem;
    }
}
@media (max-width: 767.98px) {
    .form-card {
        padding: 2rem 1.5rem;
    }
}
