/* RESET E VARIÁVEIS */
:root {
    --primary-color: #25D366;
    --primary-hover: #128C7E;
    --text-color: #333;
    --bg-light: #f0f2f5;
    --bg-white: #fff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
}

/* ESTILOS GERAIS */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* NAVBAR SEMPRE TRANSPARENTE COM EFEITO VIDRO FOSCO */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05); /* leve névoa */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: none; /* ❌ nenhuma transição de cor */
}


body {
    padding-top: 70px;
}

/* CONTAINER FLEX */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO COM PINCELADA VERDE E CONTORNO PRETO */
.navbar .logo {
    position: relative;
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
    z-index: 1;
}

.navbar .logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(-3deg);
    width: 130%;
    height: 1.6em;
    background: rgba(0, 255, 100, 0.25); /* verde tipo pincel */
    border-radius: 12px;
    filter: blur(6px);
    z-index: -1;
}

/* LINKS COM CONTORNO E PINCEL VERDE */
.navbar .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar .nav-links a {
    position: relative;
    font-weight: 600;
    text-decoration: none;
    color: white;
    padding: 6px 10px;
    font-size: 1em;
    transition: color 0.3s ease;
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
    z-index: 1;
}

.navbar .nav-links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%) rotate(-2deg);
    width: 125%;
    height: 1.4em;
    background: rgba(0, 255, 100, 0.2); /* pincel verde claro */
    border-radius: 10px;
    filter: blur(6px);
    z-index: -1;
}

.navbar .nav-links a:hover {
    color: #aad4ff;
}


/* BOTÃO HAMBÚRGUER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

.hamburger[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
    background-image: url('../images/aluga00.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    margin-top: -70px;
    padding-top: 70px;
}

.hero .overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2em, 5vw, 3.5em);
    margin-bottom: 0.3em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1em, 2.5vw, 1.5em);
    margin-bottom: 1.5em;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all var(--transition-speed);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* SEÇÃO CARACTERÍSTICAS */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features h2, .gallery h2, .mapa h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: var(--text-color);
    position: relative;
}

.features h2::after, .gallery h2::after, .mapa h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

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

.card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all var(--transition-speed) ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4em;
}

.card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

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

/* GALERIA */
.gallery {
    padding: 80px 0;
    background: #C0C0C0;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--shadow-light);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* MAPA */
.mapa {
    padding: 80px 0;
    background: var(--bg-white);
}

.mapa address {
    font-style: normal;
}

.map-placeholder {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.map-placeholder iframe {
    display: block;
}

/* ÍCONE WHATSAPP */
.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-speed);
}

.whatsapp-icon a:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* RODAPÉ */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin: 0;
    font-size: 0.95em;
}

/* MENU RESPONSIVO */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
		background: rgba(255, 255, 255, 0.05); /* leve névoa */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 5px 20px var(--shadow-light);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
    }

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

    .nav-links a {
        font-size: 1.1em;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .features h2, .gallery h2, .mapa h2 {
        font-size: 2em;
    }

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

    .whatsapp-icon {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* MELHORIAS DE ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FOCO VISÍVEL PARA TECLADO */
a:focus,
button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
    .navbar,
    .whatsapp-icon,
    .btn {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}