/* ============================================
   Village Park Locações - Estilos CSS
   Convertido de React/Tailwind para CSS puro
   ============================================ */

/* CSS Variables */
:root {
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(215, 50%, 15%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 50%, 15%);

    --primary: hsl(217, 91%, 40%);
    --primary-foreground: hsl(0, 0%, 100%);

    --secondary: hsl(210, 40%, 96%);
    --secondary-foreground: hsl(215, 50%, 15%);

    --muted: hsl(210, 30%, 95%);
    --muted-foreground: hsl(215, 20%, 45%);

    --accent: hsl(217, 91%, 50%);
    --accent-foreground: hsl(0, 0%, 100%);

    --border: hsl(214, 30%, 88%);
    --ring: hsl(217, 91%, 40%);

    --radius: 0.75rem;

    /* Custom tokens */
    --hero-gradient: linear-gradient(135deg, hsl(217, 91%, 35%) 0%, hsl(217, 91%, 25%) 100%);
    --card-shadow: 0 4px 20px -4px hsla(217, 91%, 40%, 0.15);
    --card-shadow-hover: 0 8px 30px -4px hsla(217, 91%, 40%, 0.25);
    --text-gradient: linear-gradient(135deg, hsl(217, 91%, 40%) 0%, hsl(217, 91%, 60%) 100%);

    --whatsapp: hsl(142, 70%, 45%);
    --whatsapp-hover: hsl(142, 70%, 38%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-years {
    font-weight: 500;
}

.hide-mobile {
    display: none !important;
}

.hide-tablet {
    display: none;
}

@media (min-width: 640px) {
    .hide-mobile {
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .hide-tablet {
        display: inline;
    }
}

/* Main Header */
.main-header {
    padding: 1rem;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(var(--foreground), 0.8);
    font-weight: 500;
    transition: color 0.2s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

/* Mobile Navigation */
.nav-mobile {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.nav-mobile .btn {
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
}

.btn-cta {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px 0 hsla(217, 91%, 40%, 0.35);
}

.btn-cta:hover {
    background-color: hsl(217, 91%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 hsla(217, 91%, 40%, 0.45);
}

.btn-hero {
    background-color: var(--primary-foreground);
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--primary-foreground);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-whatsapp {
    width: 100%;
    background-color: var(--whatsapp);
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
}

@media (min-width: 640px) {
    .btn-whatsapp {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: var(--primary-foreground);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-foreground);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-benefits svg {
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Image */
.hero-image {
    display: none;
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    filter: blur(32px);
}

.hero-image img {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-stats {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.stats-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
}

.stats-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    display: block;
    min-width: 100%;
}

/* Responsive Hero */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-image {
        display: block;
    }
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

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

.animate-bounce-subtle {
    animation: bounceSubtle 2s ease-in-out infinite;
}

@keyframes bounceSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 4rem 1rem;
    overflow-x: hidden;
}

.bg-background {
    background-color: var(--background);
}

.bg-muted {
    background-color: var(--muted);
}

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

.section-badge {
    display: inline-block;
    background-color: hsla(217, 91%, 40%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-title.text-left {
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 672px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }

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

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ============================================
   Equipment Section
   ============================================ */
.equipment-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.equipment-card {
    background-color: var(--card);
    padding: 0;
    border-radius: 1rem;
    border: 1px solid rgba(var(--border), 0.5);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.equipment-card-content {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.equipment-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
    border-color: hsla(217, 91%, 40%, 0.3);
}

.equipment-icon {
    width: 56px;
    height: 56px;
    background-color: hsla(217, 91%, 40%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    color: var(--primary);
}

.equipment-card:hover .equipment-icon {
    background-color: var(--primary);
    transform: scale(1.1);
}

.equipment-card:hover .equipment-icon svg {
    stroke: var(--primary-foreground);
}

.equipment-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #ffffff;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.equipment-card p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 0.5rem;
    transition: all 0.2s;
    margin-top: auto;
}

.btn-card:hover {
    background-color: hsl(217, 91%, 35%);
    transform: translateY(-2px);
}

.equipment-footer {
    text-align: center;
}

.equipment-footer p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   Advantages Section
   ============================================ */
.advantages-grid {
    display: grid;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.25rem;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-foreground);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   About Section
   ============================================ */
.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--foreground);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-icon {
    width: 40px;
    height: 40px;
    background-color: hsla(217, 91%, 40%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.value-item h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* About Stats */
.about-stats-wrapper {
    position: relative;
    overflow: hidden;
}

.about-stats {
    background-color: var(--muted);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .about-stats {
        padding: 2rem;
        gap: 1.5rem;
    }
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }
}

.stats-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
}

.stats-decoration-1 {
    width: 96px;
    height: 96px;
    background-color: hsla(217, 91%, 40%, 0.2);
    top: -1rem;
    right: -1rem;
}

.stats-decoration-2 {
    width: 128px;
    height: 128px;
    background-color: hsla(217, 91%, 40%, 0.1);
    bottom: -1rem;
    left: -1rem;
}

@media (max-width: 640px) {
    .stats-decoration-1,
    .stats-decoration-2 {
        display: none;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats {
        padding: 3rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--hero-gradient);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cta-section {
        padding: 6rem 2rem;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-wrapper {
    max-width: 672px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--card);
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s;
}

a.contact-item:hover {
    background-color: var(--muted);
}

a.contact-item:hover .contact-icon {
    background-color: var(--primary);
}

a.contact-item:hover .contact-icon svg {
    stroke: var(--primary-foreground);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: hsla(217, 91%, 40%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    color: var(--primary);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info h4 {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 0.125rem;
}

.contact-info p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    word-break: break-word;
}

@media (min-width: 640px) {
    .contact-card {
        padding: 2rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 0.75rem;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .contact-info p {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .contact-card {
        padding: 3rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 4rem 1rem;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-description {
    opacity: 0.7;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact a,
.footer-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.5;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 6rem 2rem;
    }

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--whatsapp);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 30px -4px hsla(142, 70%, 45%, 0.5);
}

.whatsapp-icon {
    animation: bounceSubtle 2s ease-in-out infinite;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.875rem;
    display: none;
}

@media (min-width: 640px) {
    .whatsapp-text {
        display: inline-block;
    }
}
