/* ===== CSS Variables ===== */
:root {
    --primary: #c8553d;
    --primary-light: #e8985e;
    --primary-dark: #a04030;
    --secondary: #f4d35e;
    --secondary-light: #fff3b0;
    --accent: #4a6741;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #faf9f7;
    --cream: #fff8f0;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Landing Page Completa ===== */
.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow-y: auto;
}

.landing-page.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1a1a2e 0%, #2d2d44 30%, #4a3728 60%, #8b3a2f 100%);
    z-index: -1;
}

.landing-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(244, 211, 94, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(200, 85, 61, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

/* Elementos Flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatAround 20s ease-in-out infinite;
}

.float-icon.coffee { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon.heart { top: 20%; right: 15%; animation-delay: -5s; font-size: 1.2rem; }
.float-icon.star { bottom: 30%; left: 8%; animation-delay: -10s; }
.float-icon.coffee2 { bottom: 15%; right: 10%; animation-delay: -15s; }
.float-icon.sparkle { top: 40%; right: 5%; animation-delay: -7s; font-size: 1.3rem; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(10deg); }
    50% { transform: translate(-10px, -50px) rotate(-5deg); }
    75% { transform: translate(30px, -20px) rotate(5deg); }
}

/* Landing Wrapper */
.landing-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    gap: 30px;
}

/* Header Landing */
.landing-header {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.landing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.landing-logo-text {
    color: var(--secondary);
    text-shadow: 0 2px 20px rgba(244, 211, 94, 0.3);
}

.landing-logo-accent {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
}

.landing-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Main Section - Owners */
.landing-main {
    /* Sem animação - estático */
}

.owners-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Container para posicionamento absoluto da bolha */
}

.owners-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(244, 211, 94, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Estático - sempre centrado */
    z-index: 2;
}

.owners-image-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.owners-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Sem hover effect - estático */
}

.owners-info {
    text-align: center;
    padding: 5px 10px;
}

.owners-name {
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.owners-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Info Cards */
.landing-info-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    padding: 18px 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(244, 211, 94, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-text strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-text span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* Skip Button */
.skip-intro-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(244, 211, 94, 0.3);
    border-radius: 30px;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.skip-intro-btn:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 211, 94, 0.4);
}

.skip-intro-btn span {
    transition: transform 0.3s ease;
}

.skip-intro-btn:hover span {
    transform: translateX(3px);
}

/* CTA Section */
.landing-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.enter-site-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 55px;
    background: linear-gradient(135deg, var(--primary) 0%, #e07a5f 50%, var(--primary-light) 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 45px rgba(200, 85, 61, 0.45),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.enter-site-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.enter-site-btn::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 17px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

.enter-site-btn:hover::before {
    left: 100%;
}

.enter-site-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.enter-site-btn:hover {
    transform: translateY(-6px) scale(1.04);
    background-position: 100% 0;
    box-shadow: 
        0 25px 60px rgba(200, 85, 61, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.enter-site-btn:active {
    transform: translateY(-3px) scale(1.02);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.enter-site-btn:hover .btn-icon {
    transform: translateX(5px);
}

.cta-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeIn 0.5s ease 2s forwards;
}

/* Landing Footer */
.landing-footer {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.social-mini {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-mini-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-mini-link:hover {
    color: var(--secondary);
}

.social-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Main Site Hidden Initially */
.main-site {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-site.visible {
    opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.logo-text {
    color: var(--secondary);
}

.logo-accent {
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a1a2e' d='M0,320 L0,200 L40,200 L40,160 L60,160 L60,120 L80,120 L80,180 L100,180 L100,140 L120,140 L120,200 L160,200 L160,100 L180,100 L180,80 L200,80 L200,60 L220,60 L220,80 L240,80 L240,120 L260,120 L260,200 L300,200 L300,160 L320,160 L320,120 L340,120 L340,160 L360,160 L360,200 L400,200 L400,140 L420,140 L420,100 L440,100 L440,60 L460,60 L460,40 L480,40 L480,60 L500,60 L500,100 L520,100 L520,180 L560,180 L560,120 L580,120 L580,160 L600,160 L600,200 L640,200 L640,180 L660,180 L660,140 L680,140 L680,100 L700,100 L700,80 L720,80 L720,60 L740,60 L740,80 L760,80 L760,120 L780,120 L780,180 L820,180 L820,140 L840,140 L840,100 L860,100 L860,140 L880,140 L880,200 L920,200 L920,160 L940,160 L940,120 L960,120 L960,80 L980,80 L980,60 L1000,60 L1000,80 L1020,80 L1020,140 L1040,140 L1040,200 L1080,200 L1080,160 L1100,160 L1100,120 L1120,120 L1120,160 L1140,160 L1140,200 L1180,200 L1180,140 L1200,140 L1200,100 L1220,100 L1220,60 L1240,60 L1240,40 L1260,40 L1260,60 L1280,60 L1280,100 L1300,100 L1300,160 L1340,160 L1340,120 L1360,120 L1360,160 L1380,160 L1380,200 L1420,200 L1420,160 L1440,160 L1440,320 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    opacity: 0.3;
}

/* ===== Hero Landing with Owners ===== */
.hero-landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
    gap: 40px;
}

.owners-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Bubble - Estilo Fofo - Posição Absoluta à Direita */
.chat-bubble {
    position: absolute;
    right: -370px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #fff9f0 0%, #ffffff 100%);
    border-radius: 30px 30px 30px 8px;
    padding: 28px 35px;
    width: 320px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(200, 85, 61, 0.1),
        inset 0 -3px 10px rgba(244, 211, 94, 0.1);
    animation: bubblePop 0.6s ease-out 0.3s both;
    border: 3px solid rgba(244, 211, 94, 0.4);
    z-index: 1;
}

.chat-bubble::before {
    content: '💬';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 1.5rem;
    animation: wobble 2s ease-in-out infinite;
}

/* Seta da bolha apontando para a esquerda (para os donos) */
.chat-bubble-tail {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid rgba(244, 211, 94, 0.4);
    filter: drop-shadow(-2px 0 3px rgba(0,0,0,0.1));
}

.chat-bubble-tail::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 4px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 16px solid #fffaf5;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes bubblePop {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-3deg);
    }
    60% {
        transform: scale(1.08) rotate(1deg);
    }
    80% {
        transform: scale(0.98) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.chat-bubble-content {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.7;
    min-height: 70px;
    font-weight: 400;
}

.typing-text {
    display: inline;
    background: linear-gradient(135deg, var(--dark) 0%, #4a3728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    display: inline-block;
    color: var(--primary);
    font-weight: 400;
    font-size: 1.3rem;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Owners Image */
.owners-image-container {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: visible;
}

.owners-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid rgba(244, 211, 94, 0.5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.owners-photo:hover {
    transform: scale(1.03);
    border-color: var(--secondary);
}

.owners-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(244, 211, 94, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(244, 211, 94, 0.15) 0%, rgba(200, 85, 61, 0.1) 100%);
    color: var(--secondary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 211, 94, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge::before {
    content: '☕';
    font-size: 1rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 50%, #64c4ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #e07a5f 50%, var(--primary-light) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 
        0 6px 20px rgba(200, 85, 61, 0.35),
        0 2px 6px rgba(200, 85, 61, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    background-position: 100% 0;
    box-shadow: 
        0 12px 35px rgba(200, 85, 61, 0.4),
        0 4px 12px rgba(200, 85, 61, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(200, 85, 61, 0.1) 0%, rgba(244, 211, 94, 0.1) 100%);
    border-radius: 30px;
    border: 1px solid rgba(200, 85, 61, 0.15);
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin-top: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.owners-illustration {
    background: linear-gradient(135deg, #8b3a2f 0%, #c8553d 100%);
    border-radius: var(--border-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cafe-scene {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.owner {
    width: 80px;
    height: 120px;
    background: linear-gradient(180deg, #f5deb3 0%, #deb887 100%);
    border-radius: 40px 40px 20px 20px;
    position: relative;
}

.owner::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #f5deb3;
    border-radius: 50%;
}

.owner-left::after {
    content: '👓';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.owner-right::after {
    content: '😊';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.floating-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(145deg, var(--white) 0%, #faf8f5 100%);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(200, 85, 61, 0.1);
    text-align: center;
    border: 1px solid rgba(200, 85, 61, 0.08);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}
}

.card-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-content {
    padding-right: 20px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Menu Section ===== */
.menu {
    padding: 100px 0;
    background: var(--light);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid rgba(200, 85, 61, 0.1);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.category-btn:hover {
    border-color: rgba(200, 85, 61, 0.3);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(200, 85, 61, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08);
}

.category-btn:hover::after {
    width: 60%;
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #e07a5f 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 
        0 6px 20px rgba(200, 85, 61, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.category-btn.active::after {
    display: none;
}

.cat-icon {
    font-size: 1.2rem;
}

.menu-content {
    margin-bottom: 50px;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-info-badge {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.menu-item {
    background: var(--white);
    padding: 28px;
    padding-top: 32px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    border: 1px solid rgba(200, 85, 61, 0.06);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(200, 85, 61, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(200, 85, 61, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(200, 85, 61, 0.15);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item.featured {
    border: 2px solid var(--secondary);
    margin-top: 15px;
}

.menu-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.item-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.item-content {
    flex: 1;
}

.item-name {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    min-width: auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #e07a5f 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(200, 85, 61, 0.25);
}

/* Extras */
.extras-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.extras-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--cream);
    border-radius: var(--border-radius);
    font-weight: 500;
}

.extra-price {
    color: var(--primary);
    font-weight: 700;
}

.tax-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 100px 0;
    background: var(--dark);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 85, 61, 0.3) 0%, rgba(244, 211, 94, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #e07a5f 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(200, 85, 61, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.2);
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 10px 30px rgba(200, 85, 61, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, #e07a5f 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(200, 85, 61, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 
        0 10px 30px rgba(200, 85, 61, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.social-link:hover::before {
    opacity: 1;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255,248,240,0.8) 100%);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(200, 85, 61, 0.06);
    border: 1px solid rgba(200, 85, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '✉️';
    margin-left: 12px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(200, 85, 61, 0.1);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255,248,240,0.5) 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 
        0 0 0 4px rgba(200, 85, 61, 0.1),
        inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-skyline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23fff8f0' d='M0,0 L0,100 L1440,100 L1440,0 L1400,0 L1400,60 L1380,60 L1380,40 L1360,40 L1360,60 L1340,60 L1340,80 L1300,80 L1300,50 L1280,50 L1280,30 L1260,30 L1260,50 L1240,50 L1240,80 L1200,80 L1200,60 L1180,60 L1180,40 L1160,40 L1160,60 L1140,60 L1140,80 L1100,80 L1100,40 L1080,40 L1080,20 L1060,20 L1060,40 L1040,40 L1040,80 L1000,80 L1000,60 L980,60 L980,40 L960,40 L960,60 L940,60 L940,80 L900,80 L900,50 L880,50 L880,30 L860,30 L860,10 L840,10 L840,30 L820,30 L820,60 L780,60 L780,40 L760,40 L760,60 L740,60 L740,80 L700,80 L700,60 L680,60 L680,40 L660,40 L660,20 L640,20 L640,40 L620,40 L620,70 L580,70 L580,50 L560,50 L560,30 L540,30 L540,50 L520,50 L520,80 L480,80 L480,60 L460,60 L460,40 L440,40 L440,20 L420,20 L420,40 L400,40 L400,70 L360,70 L360,50 L340,50 L340,70 L320,70 L320,80 L280,80 L280,50 L260,50 L260,30 L240,30 L240,10 L220,10 L220,30 L200,30 L200,60 L160,60 L160,40 L140,40 L140,60 L120,60 L120,80 L80,80 L80,60 L60,60 L60,40 L40,40 L40,60 L20,60 L20,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: cover;
    opacity: 0.05;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Landing page responsivo */
    .landing-wrapper {
        padding: 20px 15px;
        gap: 20px;
        min-height: 100vh;
        justify-content: space-between;
    }

    .landing-header {
        padding-top: 10px;
    }

    .landing-logo {
        font-size: 1.8rem;
    }

    .landing-tagline {
        font-size: 0.9rem;
    }

    /* Skip button mobile */
    .skip-intro-btn {
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    /* Em mobile, bolha vai para baixo dos donos */
    .owners-section {
        flex-direction: column;
        gap: 15px;
    }

    .owners-card {
        padding: 15px;
    }

    .chat-bubble {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        width: calc(100% - 30px);
        padding: 18px 22px;
        border-radius: 24px 24px 24px 6px;
        margin-top: 15px;
    }

    /* Seta aponta para cima em mobile (para os donos) */
    .chat-bubble-tail {
        left: 30px;
        right: auto;
        top: -16px;
        bottom: auto;
        transform: none;
        border-bottom: 18px solid rgba(244, 211, 94, 0.4);
        border-left: 0 solid transparent;
        border-right: 20px solid transparent;
        border-top: none;
    }

    .chat-bubble-tail::before {
        top: 4px;
        left: 3px;
        border-bottom: 14px solid #fffaf5;
        border-left: 0 solid transparent;
        border-right: 16px solid transparent;
        border-top: none;
    }

    .chat-bubble::before {
        display: none;
    }

    .owners-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .owners-name {
        font-size: 1.1rem;
    }

    .owners-role {
        font-size: 0.8rem;
    }

    .chat-bubble-content {
        font-size: 0.9rem;
        min-height: 50px;
        line-height: 1.5;
    }

    .landing-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }

    .info-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
        max-width: 180px;
        padding: 12px 15px;
        gap: 10px;
    }

    .info-icon {
        font-size: 1.3rem;
    }

    .info-text strong {
        font-size: 0.8rem;
    }

    .info-text span {
        font-size: 0.7rem;
    }

    .enter-site-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        border-radius: 16px;
    }

    .cta-hint {
        font-size: 0.75rem;
    }

    .landing-footer {
        padding-bottom: 10px;
    }

    .social-mini-link {
        font-size: 0.8rem;
    }

    /* Hero section mobile */
    .hero-content {
        padding: 0 15px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .title-line {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* About section mobile */
    .about {
        padding: 60px 0;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
        margin-top: 12px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature {
        gap: 12px;
    }

    .feature-icon {
        font-size: 1.6rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        padding: 20px 25px;
    }

    .card-number {
        font-size: 2.2rem;
    }

    /* Menu section mobile */
    .menu {
        padding: 60px 0;
    }

    .menu-categories {
        gap: 10px;
        padding: 0 10px;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .cat-icon {
        font-size: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        padding: 20px;
        padding-top: 25px;
        border-radius: 14px;
    }

    .item-name {
        font-size: 1.05rem;
    }

    .item-desc {
        font-size: 0.85rem;
    }

    .item-price {
        font-size: 1.15rem;
        padding: 6px 12px;
        border-radius: 10px;
    }

    .item-badge {
        top: -10px;
        right: 15px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .menu-info-badge {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    /* Gallery mobile */
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-placeholder {
        min-height: 180px;
    }

    .gallery-icon {
        font-size: 2.5rem;
    }

    .gallery-label {
        font-size: 0.95rem;
    }

    /* Contact mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-text {
        font-size: 0.95rem;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.3rem;
    }

    .contact-item h4 {
        font-size: 0.95rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 12px;
        justify-content: center;
    }

    .social-link {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 25px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.5rem;
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Landing page extra small */
    .landing-wrapper {
        padding: 15px 12px;
        gap: 15px;
    }

    .landing-logo {
        flex-direction: column;
        gap: 3px;
        font-size: 1.6rem;
    }

    .landing-tagline {
        font-size: 0.85rem;
    }

    .skip-intro-btn {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .owners-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .owners-card {
        padding: 12px;
    }

    .owners-name {
        font-size: 1rem;
    }

    .chat-bubble {
        padding: 15px 18px;
        border-radius: 20px 20px 20px 5px;
    }

    .chat-bubble-content {
        font-size: 0.85rem;
        min-height: 45px;
    }

    .landing-info-cards {
        gap: 8px;
    }

    .info-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 130px;
        padding: 10px 12px;
        border-radius: 14px;
        gap: 8px;
    }

    .info-icon {
        font-size: 1.1rem;
    }

    .info-text strong {
        font-size: 0.75rem;
    }

    .info-text span {
        font-size: 0.65rem;
    }

    .enter-site-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .cta-hint {
        font-size: 0.7rem;
    }

    /* Hero extra small */
    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .hero-badge::before {
        display: none;
    }

    .title-line {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .title-main {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    /* Sections extra small */
    .section-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Menu extra small */
    .category-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .cat-icon {
        font-size: 0.9rem;
    }

    .menu-item {
        flex-direction: column;
        gap: 12px;
        padding: 18px 15px;
    }

    .item-content {
        width: 100%;
    }

    .item-price {
        align-self: flex-start;
        font-size: 1.1rem;
        padding: 5px 10px;
    }

    .item-badge {
        top: -8px;
        right: 12px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .extras-section {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .extras-title {
        font-size: 1.2rem;
    }

    .extra-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Gallery extra small */
    .gallery-placeholder {
        min-height: 150px;
    }

    .gallery-icon {
        font-size: 2rem;
    }

    .gallery-label {
        font-size: 0.85rem;
    }

    /* Contact extra small */
    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Footer extra small */
    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}
