/* Extracted from index.html */

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

:root {
    --primary-gradient: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    --ocean-dark: #0c4a6e;
    --ocean-mid: #0891b2;
    --ocean-light: #22d3ee;
    --gold-gradient: linear-gradient(135deg, #f7971e, #ffd200);
    --premium-gradient: linear-gradient(135deg, #ff6b6b, #ee5a24);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 70px;
    /* Espaço para bottom nav */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1a1a1a;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 65px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 60px;
    }
}

/* HERO SECTION - OCEAN THEME */
.hero {
    position: relative;
    height: 65vh;
    min-height: 550px;
    background:
        linear-gradient(180deg, rgba(12, 74, 110, 0.95) 0%, rgba(8, 145, 178, 0.90) 60%, rgba(8, 145, 178, 0.85) 100%),
        radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="ocean" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%230c4a6e;stop-opacity:1" /><stop offset="60%" style="stop-color:%230891b2;stop-opacity:1" /><stop offset="100%" style="stop-color:%230891b2;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23ocean)"/><path d="M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23ffffff" opacity="0.06"/><circle cx="200" cy="150" r="100" fill="%23fef08a" opacity="0.25"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 55vh;
        min-height: 450px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(254, 240, 138, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.2) 0%, transparent 50%);
    animation: oceanShimmer 10s ease-in-out infinite;
}

@keyframes oceanShimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 900px;
}

.hero-logo {
    width: 550px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 8px rgba(34, 211, 238, 0.6));
    animation: fadeInDown 1s ease 0.2s both;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 360px;
        /* Larger for tablets */
    }

    .intro-text p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 300px;
        /* Larger for mobile */
    }

    .intro-text p {
        font-size: 0.9rem !important;
        /* Smaller text */
    }
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}


.hero-cta-container {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-cta-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.05);
}

.hero-cta-primary:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* Responsivo para botões do hero */
@media (max-width: 768px) {
    .hero-cta-container {
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .hero-cta {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }

    .hero-cta-secondary {
        font-size: 0.75rem;
        padding: 0.45rem 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-container {
        gap: 0.4rem;
        max-width: 100%;
    }

    .hero-cta {
        font-size: 0.75rem;
        padding: 0.45rem 0.8rem;
    }

    .hero-cta-secondary {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
}

/* FLOATING NAV - ULTRA COMPACTA */
.nav {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 2px 8px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
}

.nav.visible {
    opacity: 0.9;
}

.nav:hover {
    opacity: 1;
    transform: translateX(-50%) scale(0.9);
}

/* Ocultar nav ao rolar para baixo */
.nav.hidden {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links li {
    position: relative;
}

.nav-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 15px;
    transition: all 0.3s ease;
    -webkit-text-stroke: 0.1px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .nav {
        padding: 1px 6px;
        top: 3px;
        transform: translateX(-50%) scale(0.75);
    }

    .nav:hover {
        transform: translateX(-50%) scale(0.8);
    }

    .nav-links {
        gap: 0.15rem;
    }

    .nav-links a {
        font-size: 0.55rem;
        padding: 2px 4px;
    }

    .nav-links li:not(:last-child)::after {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .nav {
        transform: translateX(-50%) scale(0.65);
    }

    .nav:hover {
        transform: translateX(-50%) scale(0.7);
    }

    .nav-links a {
        font-size: 0.5rem;
    }
}






/* SECTION STYLING - NEXT LEVEL */
.section {
    padding: 6rem 0;
    margin: 3rem 0;
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 20px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247, 151, 30, 0.1), rgba(238, 90, 36, 0.1));
    color: #F7971E;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(247, 151, 30, 0.2);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PREMIUM RESTAURANT SHOWCASE */
.premium-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .premium-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .premium-content {
        padding: 1.5rem;
    }

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

.premium-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(247, 151, 30, 0.4);
}

.premium-content {
    padding: 3rem;
    color: white;
    position: relative;
}

.premium-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.premium-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.premium-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.premium-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.premium-cta {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.premium-cta:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* RESTAURANTES GRID - MOBILE OPTIMIZED */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.restaurant-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-height: 120px;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.restaurant-logo {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.restaurant-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    line-height: 1.1;
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.65rem;
}

.restaurant-hours {
    color: #4CAF50;
    font-weight: 600;
}

.restaurant-cuisine {
    color: #666;
    font-weight: 500;
}

.restaurant-pet-friendly {
    color: #2196F3;
    font-weight: 600;
}

.ver-todos-container {
    text-align: center;
    margin-top: 2rem;
}

.ver-todos-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.ver-todos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}



/* PHOTO CAROUSEL */
.photo-carousel {
    margin-top: 2rem;
}

.carousel-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.carousel-main {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.carousel-nav {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.carousel-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-thumb.active {
    opacity: 1;
    border: 2px solid var(--primary-gradient);
}

.carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* PHOTO MODAL */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.photo-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.photo-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.photo-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* REVENUE OPTIMIZATION - SMART GRID */
.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .revenue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .revenue-card {
        padding: 1.5rem;
    }
}

.revenue-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.revenue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.revenue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.revenue-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.card-rating {
    color: #ffa500;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.card-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-cta {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* NIGHTLIFE SECTION - PARTY VIBES */
.nightlife-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.nightlife-hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.nightlife-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(238, 90, 36, 0.2) 0%, transparent 50%);
    animation: nightVibes 6s ease-in-out infinite alternate;
}

@keyframes nightVibes {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.7;
    }
}

.nightlife-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.nightlife-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.nightlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .nightlife-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .nightlife-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .events-list {
        padding: 0 1.5rem 1.5rem;
    }
}

.nightlife-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(238, 90, 36, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.nightlife-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 36, 0.2));
}

.nightlife-header {
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
    position: relative;
}

.venue-type {
    background: var(--gold-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.nightlife-venue-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.events-list {
    padding: 0 2.5rem 2.5rem;
    list-style: none;
}

.event-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.event-time {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.event-description {
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* BUSINESS CONVERSION SECTIONS */
.business-opportunity {
    background: var(--premium-gradient);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.business-opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.business-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.business-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.business-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.business-cta {
    background: white;
    color: #ff6b6b;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.business-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* SOCIAL PROOF SECTION */
.social-proof {
    background: #f8f9fa;
    padding: 5rem 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: #667eea;
    opacity: 0.1;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    color: #1a1a1a;
    font-weight: 700;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* FOOTER - CONVERSION FOCUSED */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-cta {
    background: var(--premium-gradient);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* SERVICE NAVIGATION GRID (INDEX) */
.services-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-nav-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.service-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
    border-color: #14b8a6;
}

.service-nav-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: #f0fdfa;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-nav-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .services-navigation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-cta-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .premium-showcase {
        grid-template-columns: 1fr;
    }

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

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

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

    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .restaurant-card {
        padding: 0.8rem;
        min-height: 100px;
    }

    .restaurant-logo {
        font-size: 1.8rem;
    }

    .restaurant-title {
        font-size: 0.8rem;
    }

    .restaurant-info {
        font-size: 0.6rem;
    }
}

/* Triangle layout for nav (3 on top, 2 below) */
@media (max-width: 640px) {
    .nav {
        padding: 6px 10px;
    }

    .nav-links {
        width: calc(100vw - 20px);
    }

    .nav-links li {
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .nav-links li:nth-child(-n+3) {
        flex: 0 0 33.33%;
    }

    .nav-links li:nth-child(n+4) {
        flex: 0 0 50%;
    }

    .nav-links a {
        padding: 5px 10px;
        font-size: 0.86rem;
    }

    .nav-links li:nth-child(3)::after,
    .nav-links li:last-child::after {
        display: none;
    }

    /* Hero CTAs triangle reversed (2 on top, 3 below) */
    .hero-cta-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .hero-cta-container a {
        flex: 0 0 48%;
        text-align: center;
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .hero-cta-container a:nth-child(n+3) {
        flex-basis: 32%;
    }
}

@media (max-width: 480px) {
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .restaurant-card {
        padding: 0.8rem;
    }

    .restaurant-title {
        font-size: 0.8rem;
    }

    .restaurant-logo {
        font-size: 1.8rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .restaurant-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-main {
        height: 200px;
    }

    .carousel-thumb {
        width: 40px;
        height: 40px;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* SCROLL ANIMATIONS */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* LOADING ANIMATION */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* DIRETÓRIO STYLES - PREMIUM INTEGRATION */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--premium-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hard);
}

.category-section {
    margin: 40px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.category-title {
    background: var(--premium-gradient);
    color: white;
    padding: 20px;
    margin: -30px -30px 30px -30px;
    border-radius: 20px 20px 0 0;
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
}

.directory-table-container {
    overflow-x: auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.directory-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
}

.directory-table th {
    background: var(--premium-gradient);
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.directory-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.directory-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.directory-table tr:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.phone {
    color: #4CAF50;
    font-weight: 600;
    cursor: pointer;
}

.phone:hover {
    color: #45a049;
    text-decoration: underline;
}

.contact {
    color: #2196F3;
    text-decoration: none;
    font-weight: 600;
}

.contact:hover {
    color: #1976D2;
    text-decoration: underline;
}

.specialty {
    background: var(--gold-gradient);
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin: 2px;
}

.directory-summary {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
}

.directory-summary p {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
}

.directory-summary strong {
    color: #ffd700;
}

/* VER MAIS BUTTONS */
.ver-mas-container {
    text-align: center;
    margin-top: 20px;
}

.ver-mas-btn {
    background: var(--premium-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

.ver-mas-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hard);
}

.ver-mas-icon {
    transition: transform 0.3s ease;
}

.ver-mas-btn.expanded .ver-mas-icon {
    transform: rotate(180deg);
}

/* HIDE/SHOW ROWS */
.directory-table tr.hide-row {
    display: none;
}

.directory-table tr.show-row {
    display: table-row;
}

/* RESPONSIVO DIRETÓRIO */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }

    .directory-table {
        font-size: 0.8rem;
    }

    .directory-table th,
    .directory-table td {
        padding: 8px 6px;
    }

    .category-title {
        font-size: 1.2em;
        padding: 15px;
    }

    .ver-mas-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* DYNAMIC CARDS & MODAL STYLES */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    justify-items: center;
    justify-content: center;
}

.restaurant-card {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    min-height: auto;
    aspect-ratio: auto;
    text-align: left;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.restaurant-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.restaurant-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 3px solid #f0f0f0;
    font-size: 1rem;
    /* Reset font size */
}

.restaurant-logo-emoji {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.restaurant-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.restaurant-cuisine {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
}

.restaurant-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
    text-align: center;
}

.restaurant-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-pet {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.badge-hours {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

/* MODAL STYLES */
.bar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

.bar-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(238, 90, 36, 0.2);
    color: #ee5a24;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    border-radius: 24px 24px 0 0;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-top-section {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modal-logo-container {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.modal-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-logo-emoji {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.info-item p {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.modal-description {
    background: rgba(102, 126, 234, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.modal-description h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border: none;
    padding: 0;
}

.modal-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.modal-agenda {
    background: rgba(255, 193, 7, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid #FFC107;
}

.modal-agenda h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F57C00;
}

.modal-agenda p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.modal-btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.modal-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-top-section {
        grid-template-columns: 1fr;
    }

    .modal-logo-container {
        margin: 0 auto;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* SECTIONS AND CONTAINERS */
.section {
    padding: 4rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ver-todos-container {
    text-align: center;
    margin-top: 3rem;
}

.ver-todos-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.ver-todos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

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

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

/* RESTAURANT CARDS STYLES */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.restaurant-card-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.restaurant-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.restaurant-logo-emoji {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.restaurant-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.restaurant-cuisine {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.restaurant-description {
    padding: 0 1.5rem 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurant-badges {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-pet {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.badge-hours {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
}

@media (max-width: 768px) {
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .restaurant-card {
        border-radius: 12px;
    }

    .restaurant-card-header {
        padding: 0.8rem;
    }

    .restaurant-logo,
    .restaurant-logo-emoji {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.5rem;
        font-size: 1.8rem;
    }

    .restaurant-title {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .restaurant-cuisine {
        font-size: 0.75rem;
    }

    .restaurant-description {
        padding: 0 0.8rem 0.6rem;
        font-size: 0.75rem;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .restaurant-badges {
        padding: 0 0.8rem 0.8rem;
        gap: 0.3rem;
    }

    .badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

/* EXPERIENCIAS SECTION - SECONDARY STYLING */
.section-secondary {
    background: rgba(0, 0, 0, 0.02);
    padding: 3rem 0;
}

.section-secondary .section-title {
    font-size: 2rem;
}

.section-secondary .section-subtitle {
    font-size: 1rem;
}

.experiences-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 0 1 320px;
    min-width: 280px;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.experience-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.experience-subtitle {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .experiences-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .experience-card {
        padding: 1.2rem 0.8rem;
        min-width: 0;
        /* Reset min-width for grid */
    }

    .experience-icon {
        font-size: 2rem;
    }

    .experience-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* UNIFIED MODAL STYLES */
.bar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(238, 90, 36, 0.1);
    color: #ee5a24;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    /* This var might not be defined in index.html, using fallback or defining it */
    color: #667eea;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-top-section {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modal-logo-container {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.modal-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-logo-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.2rem;
    background: rgba(102, 126, 234, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.modal-description {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.modal-description h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #444;
}

.modal-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* MOBILE OPTIMIZATION FOR MODAL - ULTRA COMPACT */
@media (max-width: 768px) {
    .bar-modal {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content {
        max-height: 80vh;
        border-radius: 16px 16px 0 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .modal-header {
        padding: 0.8rem 1rem 0.6rem;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-bottom: 1px solid #f0f0f0;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        background: #f5f5f5;
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }

    .modal-title {
        font-size: 1.1rem;
        padding-right: 2rem;
        line-height: 1.3;
    }

    .modal-subtitle {
        font-size: 0.85rem;
        margin-top: 0.1rem;
    }

    .modal-body {
        padding: 0.8rem;
    }

    .modal-top-section {
        grid-template-columns: 70px 1fr;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }

    .modal-logo-container {
        width: 70px;
        height: 70px;
        margin: 0;
        border-radius: 12px;
    }

    .modal-logo-emoji {
        font-size: 2.2rem;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
        background: transparent;
        padding: 0;
    }

    .info-item {
        background: #f8f9fa;
        padding: 0.5rem;
        border-radius: 8px;
        border: none;
        gap: 0.5rem;
    }

    .info-icon {
        font-size: 1rem;
        width: 24px;
        height: 24px;
        background: rgba(102, 126, 234, 0.1);
    }

    .info-item strong {
        font-size: 0.65rem;
        margin-bottom: 0.1rem;
    }

    .info-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .modal-description {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        border-radius: 10px;
    }

    .modal-description h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .modal-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .carousel-main {
        height: 180px;
    }

    .carousel-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .photo-carousel {
        margin-top: 0.8rem;
    }
}

/* Block 2 */
/* START FORECAST HORIZONTAL FIX */
#ww-daily-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
}

#ww-daily-container::-webkit-scrollbar {
    display: none;
}

.ww-daily-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between;
    min-width: 100px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
    flex-shrink: 0;
}

.ww-d-day {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.ww-d-icon {
    font-size: 1.8rem !important;
    margin: 4px 0;
}

.ww-d-temp-range {
    margin-top: auto;
}

/* END FORECAST HORIZONTAL FIX */

.wind-weather-widget {
    max-width: 700px;
    width: 94%;
    margin: 1.5rem auto 2.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    padding: 24px 16px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: fadeInDown 0.5s ease;
}

.ww-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.ww-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    /* Prevent overflow */
}

.ww-label {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.ww-value {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.ww-icon {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ww-divider {
    width: 1px;
    height: 35px;
    background: #e2e8f0;
    margin: 0 4px;
}

.ww-recommendation {
    background: #f8fafc;
    color: #334155;
    padding: 14px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    border: 1px solid #e2e8f0;
    margin-top: 15px;
}

.ww-recommendation strong {
    color: #0f172a;
    font-weight: 700;
}

/* Mobile specific adjustments to fit 5 cols */
@media (max-width: 480px) {
    .ww-metric {
        flex: 1;
    }

    .ww-value {
        font-size: 0.95rem;
    }

    .ww-icon {
        font-size: 1.8rem;
    }

    .ww-divider {
        height: 25px;
        margin: 0 2px;
    }

    .wind-weather-widget {
        padding: 16px 12px;
    }
}

/* FORECAST VIEW STYLES */
.ww-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.ww-nav-btn:hover {
    color: #0f172a;
}

.ww-forecast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

/* Hourly Scroll */
.ww-hourly-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    scrollbar-width: none;
    /* Firefox */
}

.ww-hourly-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.ww-hourly-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
    gap: 6px;
}

.ww-h-time {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.ww-h-icon {
    font-size: 1.4rem;
}

.ww-h-temp {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

.ww-divider-horiz {
    height: 1px;
    background: #f1f5f9;
    margin: 0 0 12px 0;
    width: 100%;
}

/* Daily List */
.ww-daily-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ww-daily-item {
    display: grid;
    grid-template-columns: 80px 30px 1fr 1fr;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.ww-d-day {
    font-weight: 600;
    color: #334155;
}

.ww-d-icon {
    font-size: 1.1rem;
    text-align: center;
}

.ww-d-data {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ww-d-temp-range {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}

.ww-d-wind {
    font-size: 0.75rem;
    color: #64748b;
}