/* Custom CSS Design System for Lavanderia Expert */

:root {
    /* Color Palette */
    --primary: #1E88E5;
    --primary-hover: #1565C0;
    --primary-light: #E3F2FD;
    --accent: #26C6DA;
    --accent-hover: #00ACC1;
    --accent-light: #E0F7FA;
    --white: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7FA;
    --text-dark: #374151;
    --text-muted: #64748B;
    --success: #10B981;
    --danger: #EF4444;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --grad-dark: linear-gradient(135deg, #0F172A 0%, #374151 100%);
    --grad-light: linear-gradient(135deg, #F5F7FA 0%, var(--primary-light) 100%);

    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-accent: 0 10px 20px -5px rgba(38, 198, 218, 0.3);
    
    /* Layout & Animations */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background-color: var(--primary-light);
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.tag-white {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Typography Utility */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(38, 198, 218, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

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

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

.logo-svg {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
}

.logo-text.text-white {
    color: var(--white);
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 5px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.5rem;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
}

/* Mobile responsive menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle[aria-expanded="true"] .icon-open {
        display: none;
    }
    
    .menu-toggle[aria-expanded="false"] .icon-close {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 2px solid var(--primary-light);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        align-items: center;
    }
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--bg-primary) 70%);
    position: relative;
    overflow: hidden;
}

.hero-background-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(38, 198, 218, 0.2) 70%);
    border-radius: 50%;
    box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.05), inset 2px 2px 6px rgba(255, 255, 255, 0.9);
    animation: float-bubbles var(--bubble-duration, 12s) infinite ease-in-out;
}

@keyframes float-bubbles {
    0% {
        transform: translateY(110vh) scale(1);
        opacity: 0.1;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-laundry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.icon-badge {
    color: var(--accent);
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(8px);
}

.status-indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success);
}

.status-indicator-dot.closed {
    background-color: var(--danger);
}

.pulsing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 4s infinite ease-in-out;
}

.floating-card.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.icon-float {
    color: var(--primary);
    background: var(--primary-light);
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.floating-card h4 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        align-items: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .floating-card.card-1 {
        left: 0;
    }

    .floating-card.card-2 {
        right: 0;
    }
}

/* Como Funciona Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.step-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
}

.step-card:hover .step-number {
    color: var(--accent);
}

.step-icon-wrapper {
    background: var(--grad-light);
    color: var(--primary);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.step-icon {
    width: 32px;
    height: 32px;
}

.step-card:hover .step-icon-wrapper {
    background: var(--grad-primary);
    color: var(--white);
    transform: scale(1.1);
}

.step-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Serviços Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.service-icon-box {
    background-color: var(--accent-light);
    color: var(--accent-hover);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon-box {
    background-color: var(--accent);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    flex-grow: 1;
}

/* Simulador Section (Interactive Feature) */
.simulator-section {
    padding: 60px 0 100px;
    background-color: var(--bg-primary);
}

.simulator-wrapper {
    background: var(--grad-dark);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.simulator-info h2 {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.simulator-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.simulator-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 24px 16px;
    text-align: center;
}

.metric-val {
    display: block;
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.simulator-controls {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px;
}

.simulator-controls h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.slider-hint {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.slider-container {
    margin-bottom: 20px;
    text-align: center;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    margin-bottom: 20px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(38, 198, 218, 0.5);
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-value {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.slider-legend {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .simulator-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .simulator-metrics {
        grid-template-columns: 1fr;
    }
}

/* Vantagens Section */
.advantages-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.advantages-list {
    margin-top: 32px;
}

.advantages-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.icon-check {
    color: var(--accent-hover);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

.advantages-list li strong {
    display: block;
    font-family: var(--font-title);
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.advantages-list li div {
    color: var(--text-muted);
}

.advantages-target {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.advantages-target h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 750;
    text-align: center;
    margin-bottom: 30px;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.target-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: var(--transition);
}

.target-item i {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.target-item span {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.target-item:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .advantages-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Horário Section */
.hours-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.hours-card {
    background: var(--grad-primary);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-accent);
}

.hours-icon-bg {
    background: rgba(255, 255, 255, 0.1);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hours-main-icon {
    width: 44px;
    height: 44px;
}

.hours-card h2 {
    font-family: var(--font-title);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hours-sub {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.status-card {
    background: var(--white);
    color: var(--text-dark);
    display: inline-block;
    padding: 24px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.status-badge .status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success);
}

.status-badge .status-dot.closed {
    background-color: var(--danger);
    animation: none;
}

.status-badge .status-label {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hours-card h2 {
        font-size: 2rem;
    }
    .status-card {
        padding: 20px 24px;
    }
}

/* Contato Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon-wrapper {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-wrapper i {
    width: 24px;
    height: 24px;
}

.info-text h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-cta {
    margin-top: 20px;
}

.contact-map {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
    min-height: 400px;
}

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

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 350px;
    }
}

/* Footer Section */
.main-footer {
    background: var(--grad-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-container {
    margin-bottom: 20px;
}

.footer-brand .logo-svg {
    width: 36px;
    height: 36px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.footer-links h3, .footer-hours h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 5px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-hours p i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer-important {
    color: var(--accent) !important;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: floating-wa-pulse 2s infinite;
    transition: var(--transition);
}

.floating-whatsapp i {
    width: 28px;
    height: 28px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

@keyframes floating-wa-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Scroll Animation Classes (Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Fade In Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s forwards 0.8s;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
