/* =============================================
   RESTAURANTE ÀBABUJA — v2.0 Stylesheet
   Premium Restaurant Design
   ============================================= */

/* === CSS Variables === */
:root {
    --gold: #C59D5F;
    --gold-light: #D4B07A;
    --gold-dark: #A88543;
    --dark: #1a1a1a;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-lighter: #252525;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DA;
    --white: #FFFFFF;
    --text: #515151;
    --text-light: #888888;
    --text-dark: #252525;
    --accent: #1e73be;
    --success: #2ecc71;
    --error: #e74c3c;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Great Vibes', 'Lucida Handwriting', cursive;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 20px rgba(197,157,95,0.3);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
	pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: pulseGold 2s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

@keyframes pulseGold {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-logo .logo-dark {
    display: none;
}

.navbar.scrolled .nav-logo .logo-light {
    display: none;
}

.navbar.scrolled .nav-logo .logo-dark {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--gold);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold);
}

/* Language switcher */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.3);
}

.navbar.scrolled .nav-lang {
    border-left-color: rgba(0,0,0,0.15);
}

.nav-lang a {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    padding: 4px 6px;
}

.nav-lang .lang-active {
    color: var(--gold);
}

.nav-lang .lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.navbar.scrolled .nav-lang a {
    color: var(--text-light);
}

.navbar.scrolled .nav-lang a.lang-active {
    color: var(--gold) !important;
    font-weight: 700;
}

.navbar.scrolled .nav-lang .lang-sep {
    color: rgba(0,0,0,0.2);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-badge span {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 24px;
    border-radius: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-script {
    display: block;
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

/* Hero Logo Mode */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hero-logo img {
    max-height: 260px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.35));
    transition: opacity 0.4s ease;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll i {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Hero Info Bar */
.hero-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 18px 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
}

.info-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.info-item span {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-header--light .section-title {
    color: var(--white);
}

.section-header--light .section-tag {
    color: var(--gold-light);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-divider--left {
    justify-content: flex-start;
}

.divider-icon {
    color: var(--gold);
    font-size: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* === Historia Section === */
.section-historia {
    background: var(--cream);
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.historia-lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-style: italic;
}

.historia-text p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.historia-origin {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.historia-origin h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.script-text {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 2rem;
    font-weight: 400;
}

.historia-origin p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.historia-origin em {
    color: var(--gold-dark);
    font-style: italic;
}

/* Stats */
.historia-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Image Stack */
.historia-images {
    position: relative;
}

.img-stack {
    position: relative;
}

.img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.img-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    animation: badgeRotate 8s linear infinite;
}

.badge-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

@keyframes badgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === Features Band === */
.features-band {
    background: var(--dark-bg);
    padding: 60px 0;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gold);
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* === Menu Section === */
.section-menu {
    position: relative;
    background: var(--dark-bg);
    padding: 100px 0;
    overflow: hidden;
}

.menu-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.menu-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.9), rgba(18,18,18,0.95));
    z-index: 1;
}

.section-menu .container {
    position: relative;
    z-index: 2;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.menu-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Menu Panel */
.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.menu-item-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

.menu-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    margin-bottom: 5px;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.menu-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

.menu-badge.popular {
    background: rgba(197,157,95,0.15);
    color: var(--gold);
    border: 1px solid rgba(197,157,95,0.3);
}

.menu-badge.chef {
    background: rgba(231,76,60,0.15);
    color: #e74c3c;
    border: 1px solid rgba(231,76,60,0.3);
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

.menu-cta p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-style: italic;
}

/* === Gallery Section === */
.section-galeria {
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filter.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 10px;
    }
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    gap: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
}

.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item.hidden {
    display: none;
}

/* Gallery Load More */
.gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.btn-load-more {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-load-more:hover {
    background: var(--gold);
    color: var(--white);
}
.btn-load-more i {
    font-size: 1.1rem;
}

/* === Testimonials Section === */
.section-testemunhos {
    background: var(--dark-bg);
    overflow: hidden;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    text-align: center;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.test-prev,
.test-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-prev:hover,
.test-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Review Platforms */
.review-platforms {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.platform {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform i {
    font-size: 1.8rem;
    color: var(--gold);
}

.platform strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
}

.platform span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* === Reservation Section === */
.section-reservas {
    background: var(--cream);
}

.reservas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservas-info .section-title {
    font-size: 2.2rem;
}

.reservas-info > p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.8;
}

.reservas-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-row i {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-row strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.contact-row a,
.contact-row span {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-row a:hover {
    color: var(--gold);
}

/* Reservation Form */
.reservas-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--gold);
    margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-group--full {
    margin-bottom: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

/* === Contact Section === */
.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    filter: grayscale(30%) contrast(1.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.contactos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.contacto-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contacto-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contacto-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contacto-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.contacto-card a {
    color: var(--gold);
}

.contacto-card a:hover {
    color: var(--gold-dark);
}

.section-contactos {
    padding-bottom: 80px;
    background: var(--cream);
}

/* === Footer === */
.site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    font-style: italic;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-credits i {
    color: var(--gold);
}

/* Admin shortcut — hidden but clickable */
.admin-shortcut {
    cursor: default;
    opacity: 1;
}
.admin-shortcut:hover {
    opacity: 0.7;
}

/* Language toggle active state */
.lang-btn {
    cursor: pointer;
    transition: color 0.2s;
}
.lang-btn.lang-active {
    color: #fff !important;
    font-weight: 700;
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .historia-grid {
        gap: 40px;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 899px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .mobile-overlay {
        display: block;
    }

    .mobile-overlay.active {
        pointer-events: all;
    }

    .nav-link {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-lang {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 16px;
        margin-top: 16px;
        width: 100%;
    }

    .nav-lang a {
        color: rgba(255,255,255,0.6);
    }
	    .navbar.scrolled .nav-menu .nav-link {
        color: rgba(255,255,255,0.8);
    }

    .navbar.scrolled .nav-menu .nav-link:hover,
    .navbar.scrolled .nav-menu .nav-link.active {
        color: var(--gold);
    }

    .navbar.scrolled .nav-toggle.active span {
        background: var(--white);
    }

    .navbar.scrolled .nav-menu .nav-lang a {
        color: rgba(255,255,255,0.6);
    }

    .navbar.scrolled .nav-menu .nav-lang a.lang-active {
        color: var(--gold) !important;
    }

    .navbar.scrolled .nav-menu .nav-lang .lang-sep {
        color: rgba(255,255,255,0.3);
    }

	.hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-logo img {
        max-height: 200px;
    }

    .hero-info-bar {
        flex-direction: row;
        gap: 0;
        padding: 10px 8px;
        justify-content: space-evenly;
    }

    .info-item {
        flex-direction: column;
        gap: 3px;
        text-align: center;
        flex: 1;
        padding: 0 4px;
    }

    .info-item i {
        font-size: 0.85rem;
    }

    .info-item span {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    .info-item span br {
        display: none;
    }

    .info-item + .info-item {
        border-left: 1px solid rgba(255,255,255,0.15);
    }

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

    .historia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .historia-images {
        order: -1;
    }

    .reservas-wrapper {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .review-platforms {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .platform {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .platform i {
        font-size: 1.3rem;
    }

    .platform strong {
        font-size: 0.9rem;
    }

    .platform span {
        font-size: 0.7rem;
    }

}

@media (max-width: 600px) {
    .section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo img {
        max-height: 200px;
        max-width: 85%;
    }
    
	.hero-content {
        padding-top: 60px;
    }

    .hero-script {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }


    .hero-scroll {
        display: none;
    }
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-bottom: 100px;
    }

	.hero-info-bar {
		padding: 6px 4px;
		height: 50px;
	}

	.info-item span {
		font-size: 0.55rem;
	}

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .historia-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contactos-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .reservas-form-wrapper {
        padding: 24px;
    }

    .testimonial-card {
        padding: 30px 16px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .img-overlay {
        bottom: -15px;
        right: -15px;
        width: 50%;
    }

    .experience-badge {
        top: -10px;
        left: -10px;
        width: 80px;
        height: 80px;
    }

    .badge-number {
        font-size: 1.2rem;
    }

    .whatsapp-float {
        bottom: 88px;
        right: 20px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }


    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

/* === Scroll Animations Custom === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Print Styles === */
@media print {
    .navbar,
    .hero-scroll,
    .hero-info-bar,
    .back-to-top,
    .whatsapp-float,
    .gallery-overlay,
    #preloader {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
    }
}

/* =============================================
   SITE POPUP SYSTEM
   ============================================= */

/* === Overlay (all types) === */
.site-popup-overlay {
    position: fixed;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.site-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* === CENTER TYPE (Modal) === */
.site-popup-center {
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.site-popup-center .site-popup-box {
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.site-popup-center.active .site-popup-box {
    transform: scale(1) translateY(0);
}

/* === BANNER TYPE === */
.site-popup-banner {
    left: 0; right: 0;
    width: 100%;
}
.site-popup-banner.site-popup-pos-top {
    top: 0;
}
.site-popup-banner.site-popup-pos-bottom,
.site-popup-banner.site-popup-pos-center {
    bottom: 0;
}

.site-popup-banner .site-popup-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    position: relative;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}
.site-popup-banner.site-popup-pos-bottom .site-popup-box,
.site-popup-banner.site-popup-pos-center .site-popup-box {
    transform: translateY(100%);
}
.site-popup-banner.active .site-popup-box {
    transform: translateY(0);
}

.site-popup-banner .site-popup-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}
.site-popup-banner .site-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-popup-banner .site-popup-content {
    flex: 1;
}
.site-popup-banner .site-popup-title {
    font-size: 1rem;
    margin-bottom: 2px;
}
.site-popup-banner .site-popup-text {
    font-size: 0.85rem;
    opacity: 0.85;
}
.site-popup-banner .site-popup-btn {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 8px 18px;
}

/* === SLIDE-IN TYPE === */
.site-popup-slide_in {
    bottom: 24px;
    right: 24px;
    max-width: 380px;
    width: 90vw;
}

.site-popup-slide_in .site-popup-box {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    position: relative;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.site-popup-slide_in.active .site-popup-box {
    transform: translateX(0);
}

/* === FULLSCREEN TYPE === */
.site-popup-fullscreen {
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.site-popup-fullscreen .site-popup-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}
.site-popup-fullscreen.active .site-popup-box {
    transform: scale(1);
}

.site-popup-fullscreen .site-popup-image {
    max-width: 320px;
    margin: 0 auto 24px;
}

.site-popup-fullscreen .site-popup-title {
    font-size: 2.2rem;
}

.site-popup-fullscreen .site-popup-text {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === Shared elements === */
.site-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}
.site-popup-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
}

.site-popup-image {
    width: 100%;
    overflow: hidden;
}
.site-popup-center .site-popup-image,
.site-popup-slide_in .site-popup-image {
    border-radius: 16px 16px 0 0;
    max-height: 240px;
}
.site-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-popup-content {
    padding: 24px;
}
.site-popup-banner .site-popup-content {
    padding: 0;
}

.site-popup-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.site-popup-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 16px;
}
.site-popup-text:last-child {
    margin-bottom: 0;
}

.site-popup-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.site-popup-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* === Popup responsive === */
@media (max-width: 600px) {
    .site-popup-center .site-popup-box {
        max-width: 100%;
    }

    .site-popup-slide_in {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
        width: auto;
    }

    .site-popup-banner .site-popup-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 14px 16px;
    }

    .site-popup-fullscreen .site-popup-title {
        font-size: 1.5rem;
    }

    .site-popup-fullscreen .site-popup-text {
        font-size: 1rem;
    }

    .site-popup-fullscreen .site-popup-image {
        max-width: 200px;
    }
}
.grecaptcha-badge {
    visibility: hidden !important;
}
@media (max-height: 750px) and (min-width: 900px) {
    .hero-content {
        transform: translateY(-30px);
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badge span {
        padding: 6px 18px;
        font-size: 0.7rem;
    }

    .hero-cta .btn {
        padding: 11px 28px;
        font-size: 0.8rem;
    }

    .hero-scroll {
        bottom: 75px;
    }
}


/* TripAdvisor custom icon */
.icon-tripadvisor {
    display: inline-block;
    width: 1.5em;
    height: 0.9em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 5.5 20 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6.009h-2.829C15.211 4.675 12.813 4 10 4s-5.212.675-7.171 2.009H0c.428.42.827 1.34.993 2.04A4.954 4.954 0 0 0 0 11.008c0 2.757 2.243 5 5 5a4.97 4.97 0 0 0 3.423-1.375L10 17l1.577-2.366A4.97 4.97 0 0 0 15 16.01c2.757 0 5-2.243 5-5 0-1.112-.377-2.13-.993-2.96.166-.7.565-1.62.993-2.04zm-15 8.4c-1.875 0-3.4-1.525-3.4-3.4s1.525-3.4 3.4-3.4 3.4 1.525 3.4 3.4-1.525 3.4-3.4 3.4zm5-3.4a5.008 5.008 0 0 0-4.009-4.9C7.195 5.704 8.53 5.5 10 5.5s2.805.204 4.009.61A5.008 5.008 0 0 0 10 11.008zm5 3.4c-1.875 0-3.4-1.525-3.4-3.4s1.525-3.4 3.4-3.4 3.4 1.525 3.4 3.4-1.525 3.4-3.4 3.4zM5 8.86c-1.185 0-2.15.964-2.15 2.15s.965 2.15 2.15 2.15 2.15-.964 2.15-2.15-.965-2.15-2.15-2.15zm0 2.791a.65.65 0 1 1 0-1.3.65.65 0 0 1 0 1.3zm10-2.791c-1.185 0-2.15.964-2.15 2.15s.965 2.15 2.15 2.15 2.15-.964 2.15-2.15-.965-2.15-2.15-2.15zm0 2.791a.65.65 0 1 1 0-1.3.65.65 0 0 1 0 1.3z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 5.5 20 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6.009h-2.829C15.211 4.675 12.813 4 10 4s-5.212.675-7.171 2.009H0c.428.42.827 1.34.993 2.04A4.954 4.954 0 0 0 0 11.008c0 2.757 2.243 5 5 5a4.97 4.97 0 0 0 3.423-1.375L10 17l1.577-2.366A4.97 4.97 0 0 0 15 16.01c2.757 0 5-2.243 5-5 0-1.112-.377-2.13-.993-2.96.166-.7.565-1.62.993-2.04zm-15 8.4c-1.875 0-3.4-1.525-3.4-3.4s1.525-3.4 3.4-3.4 3.4 1.525 3.4 3.4-1.525 3.4-3.4 3.4zm5-3.4a5.008 5.008 0 0 0-4.009-4.9C7.195 5.704 8.53 5.5 10 5.5s2.805.204 4.009.61A5.008 5.008 0 0 0 10 11.008zm5 3.4c-1.875 0-3.4-1.525-3.4-3.4s1.525-3.4 3.4-3.4 3.4 1.525 3.4 3.4-1.525 3.4-3.4 3.4zM5 8.86c-1.185 0-2.15.964-2.15 2.15s.965 2.15 2.15 2.15 2.15-.964 2.15-2.15-.965-2.15-2.15-2.15zm0 2.791a.65.65 0 1 1 0-1.3.65.65 0 0 1 0 1.3zm10-2.791c-1.185 0-2.15.964-2.15 2.15s.965 2.15 2.15 2.15 2.15-.964 2.15-2.15-.965-2.15-2.15-2.15zm0 2.791a.65.65 0 1 1 0-1.3.65.65 0 0 1 0 1.3z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    line-height: 1;
}
