/* ==========================================================================
   Design System & Global Variables
   ========================================================================== */
:root {
    /* Brand Color Palette */
    --color-primary-dark: #261C12;  /* Dark Warm Espresso */
    --color-accent-sand: #D5C4B0;   /* Elegant Sand/Beige */
    --color-accent-sage: #B4B1A2;   /* Modern Sage Green */
    --color-alabaster: #FAF9F6;     /* Off-White Alabaster */
    
    /* Functional Colors */
    --color-white: #FFFFFF;
    --color-text-main: #261C12;
    --color-text-muted: #574D42;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    
    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(38, 28, 18, 0.05);
    --shadow-medium: 0 15px 45px rgba(38, 28, 18, 0.1);
    --shadow-accent: 0 8px 24px rgba(180, 177, 162, 0.25);
    --border-radius: 12px;
}

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

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

body {
    background-color: var(--color-alabaster);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-alabaster);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-sand);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-sage);
}

/* ==========================================================================
   Typography & Typography Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

.text-accent-color {
    color: var(--color-accent-sand);
}

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

.section-tagline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-sage);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-sand);
    margin: 0 auto 20px auto;
}

.section-divider.left {
    margin-left: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-accent-sand);
    color: var(--color-primary-dark);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary-dark {
    background-color: transparent;
    color: var(--color-primary-dark);
    border: 1.5px solid var(--color-primary-dark);
}

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

.btn-whatsapp-direct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-whatsapp-direct:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(38, 28, 18, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid rgba(213, 196, 176, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo {
    height: 35px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-accent-sand);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--color-accent-sand);
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomOut 20s ease-out forwards;
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-title .text-accent-color {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.badge {
    background-color: rgba(38, 28, 18, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(213, 196, 176, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-sand);
}

.badge-txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

/* Scroll mouse indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.6s infinite;
}

@keyframes scrollAnim {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Animations Definitions */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* ==========================================================================
   Highlights Section — editorial numbered list (not a generic icon-card grid)
   ========================================================================== */
.highlights-section {
    padding: 100px 0;
    background-color: var(--color-alabaster);
}

.kool-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    border-bottom: 1px solid rgba(213, 196, 176, 0.35);
}

.kool-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(213, 196, 176, 0.35);
}

.kool-index {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent-sand);
    flex-shrink: 0;
    line-height: 1.4;
}

.card-title {
    font-size: 1.15rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Scroll reveal triggers */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 100px 0 80px;
    background-color: var(--color-alabaster);
    contain: paint;
}

.gallery-hero {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.gallery-hero-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-primary-dark);
}

.gallery-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 36px;
    background: linear-gradient(to top, rgba(38, 28, 18, 0.85), transparent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
}

.gallery-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(38, 28, 18, 0.5);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.gallery-hero-prev {
    left: 20px;
}

.gallery-hero-next {
    right: 20px;
}

.gallery-hero-arrow:hover {
    background-color: var(--color-accent-sand);
    border-color: var(--color-accent-sand);
    color: var(--color-primary-dark);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-thumb {
    flex: 0 0 auto;
    width: 130px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.55;
    transition: var(--transition-smooth);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover {
    opacity: 0.85;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-accent-sand);
}

.gallery-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.35;
    padding: 24px 0 0 0;
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location-section {
    padding: 100px 0;
    background-color: var(--color-alabaster);
    border-top: 1px solid rgba(213, 196, 176, 0.2);
    contain: paint;
}

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

.location-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.connectivity-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.point-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent-sage);
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(213, 196, 176, 0.3);
    isolation: isolate;
    transform: translateZ(0);
}

.map-container iframe {
    vertical-align: middle;
}

/* ==========================================================================
   Developer Section (PRODOS)
   ========================================================================== */
.developer-section {
    padding: 100px 0;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.developer-container {
    text-align: center;
    max-width: 900px;
}

.dev-tagline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-sand);
    display: block;
    margin-bottom: 12px;
}

.dev-title {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dev-motto {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-accent-sage);
    margin-bottom: 20px;
}

.dev-bio {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: rgba(255, 255, 255, 0.85);
}

.dev-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dev-feat {
    padding: 20px;
}

.dev-feat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-sand);
    display: block;
    margin-bottom: 6px;
}

.dev-feat-lbl {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    display: block;
    margin-bottom: 10px;
}

.dev-feat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ==========================================================================
   Contact Section — single WhatsApp CTA (no lead form for the launch phase)
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-alabaster);
}

.contact-wrap {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 44px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hl-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.contact-hl-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-sage);
    margin-right: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(213, 196, 176, 0.15);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.footer-social-link svg {
    width: 17px;
    height: 17px;
}

.footer-social-link:hover {
    background-color: var(--color-accent-sand);
    border-color: var(--color-accent-sand);
    color: var(--color-primary-dark);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-sand);
    margin-bottom: 8px;
}

.footer-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-link:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.prodos-highlight {
    color: var(--color-accent-sand);
    font-weight: 500;
}

.foot-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.foot-credit a {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
}

.foot-credit a:hover {
    opacity: 1;
}

.foot-credit img {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
}

.legal-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: scale(1.08) rotate(5deg);
}

.whatsapp-float-icon {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   Gallery Lightbox
   ========================================================================== */
.gallery-hero-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(38, 28, 18, 0);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.gallery-hero-frame:hover::after {
    background: rgba(38, 28, 18, 0.12);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 14, 9, 0.94);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-figure {
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    border-radius: 6px;
    box-shadow: var(--shadow-medium);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 16px;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-arrow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin: 0 20px;
}

.lightbox-arrow:hover {
    background: var(--color-accent-sand);
    color: var(--color-primary-dark);
    border-color: var(--color-accent-sand);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 16px;
    }
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        margin: 0 8px;
    }
    .lightbox-close {
        top: 14px;
        right: 16px;
    }
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */

/* Tablet & Smaller Laptops (1024px) */
@media (max-width: 1024px) {
    .dev-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dev-feat {
        padding: 10px;
    }
}

/* Mobile & Small Tablets (768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-badges {
        flex-direction: column;
        gap: 15px;
    }
    .badge {
        min-width: 220px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-nav {
        display: none; /* In a real project we'd have a mobile menu, but since this is a simple LP, we target desktop-focused pauta */
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kool-list {
        grid-template-columns: 1fr;
    }

    .kool-item {
        padding: 24px 0;
    }

    .map-container iframe {
        height: 300px;
    }

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

    .footer-links-group {
        gap: 20px;
    }
}

/* Very Small Devices (480px) */
@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float-icon {
        width: 26px;
        height: 26px;
    }
}
