/* =========================================================
   VARIÁVEIS
   ========================================================= */
:root {
    --lux-gold: #c9a86a;
    --lux-dark: #2e2e2e;
    --lux-gray: #6b6b6b;
    --lux-light: #f8f9fa;
    --pepper-red: #c1121f;
}

html {
    scroll-behavior: smooth;
}

/* =========================================================
   HERO
   ========================================================= */
.home {
    position: relative;
    min-height: 90vh;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.home-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #1f1f1f;
}

.home-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #d30000;
}

.home-content p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 36px;
    color: #4a4a4a;
}

.home-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* BOTÕES */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s ease;
    width: fit-content;
}

.btn-primary {
    background-color: #c9a86a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b9975a;
    transform: translateY(-2px);
}

/* Botão Hero Animado */
.btn-hero-animated {
    background: linear-gradient(135deg, #b11226, #d4142f);
    box-shadow: 0 10px 30px rgba(177, 18, 38, 0.35);
    animation: pulseNav 3s infinite;
}

.btn-hero-animated i.fa-sparkles {
    font-size: 14px;
    animation: sparkleNav 2s infinite;
}

.btn-hero-animated:hover {
    background: linear-gradient(135deg, #a00000, #c00000);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(177, 18, 38, 0.45);
    animation-play-state: paused;
}

.btn-hero-animated:hover i {
    animation-play-state: paused;
}

/* 🌶️ Pimenta na Hero */
.pepper-thought-hero {
    position: relative;
    font-size: 12px;
    color: #dc2626;
    background: #fff;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
    animation: pepperFloatNav 3.5s infinite;
}

/* =========================================================
   CONCEITO – REMOVIDO
   ========================================================= */

/* =========================================================
   SUÍTES – HOME
   ========================================================= */
.suites-home {
    background-color: var(--lux-light);
    padding: 120px 32px;
}

.suites-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.suites-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--lux-dark);
    margin-bottom: 16px;
}

.suites-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--lux-gray);
}

/* GRID */
.suites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* CARD */
.suite-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.suite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGEM */
.suite-image {
    position: relative;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.suite-card:hover img {
    transform: scale(1.08);
}

/* INFO */
.suite-info {
    padding: 22px;
    text-align: center;
}

.suite-info h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--lux-dark);
}

/* BOTÃO */
.btn-suite {
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid var(--lux-gold);
    color: var(--lux-gold);
    background: transparent;
    transition: all 0.25s ease;
    line-height: 1;
}

.btn-suite:hover {
    background-color: var(--lux-gold);
    color: #fff;
}


@media (max-width: 1200px) {
    .suites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 520px) {
    .suites-grid {
        grid-template-columns: 1fr;
    }

    .suite-image img {
        height: 200px;
    }
}

/* 💰 PREÇO SOBRE A IMAGEM */
.suite-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
    z-index: 3;
    animation: pulsePrice 3s infinite;
}

.suite-price small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.suite-price strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.suite-price span {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

/* AÇÕES DO CARD */
.suite-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 6px;
}



/* BOTÃO WHATSAPP DA SUÍTE */
.btn-whatsapp-suite {
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;       /* 🔥 impede quebra de linha */
    flex-wrap: nowrap;
    gap: 6px;
    line-height: 1;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-suite i {
    font-size: 14px;
    color: #ffffff !important;
}

.btn-whatsapp-suite:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}


@media (max-width: 480px) {
    .suite-actions {
        flex-direction: column;
    }

    .suite-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


/* animação discreta */
@keyframes pulsePrice {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
    }
}


/* =========================================================
   FEATURES – REMOVIDO
   ========================================================= */

/* =========================================================
   AVALIAÇÕES GOOGLE – PREMIUM
   ========================================================= */
.testimonials {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    padding: 120px 32px;
    text-align: center;
}

.testimonials h2 {
    font-size: clamp(30px, 4vw, 38px);
    margin-bottom: 14px;
    color: var(--lux-dark);
}

.testimonials::after {
    content: "★★★★★";
    display: block;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--lux-gold);
    margin-bottom: 48px;
}

/* CONTAINER DO IFRAME */
.testimonial-container {
    max-width: 960px;
    max-height: 310px;
    margin: 0 auto 48px;
    padding: 26px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* DETALHE DECORATIVO */
.testimonial-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(201,168,106,0.12),
        transparent 55%);
    pointer-events: none;
}

/* IFRAME */
.elfsight-reviews {
    width: 100%;
    min-height: 420px;
    border: none;
}

/* RODAPÉ COM CTA */
.testimonial-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* BOTÃO GOOGLE */
.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #d30000, #a80000);
    color: #fff;
    box-shadow: 0 10px 26px rgba(66, 133, 244, 0.35);
    transition: all 0.35s ease;
}

.btn-google-reviews i {
    font-size: 18px;
}

.btn-google-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(66, 133, 244, 0.5);
}

/* TEXTO DE INCENTIVO */
.testimonials::before {
    content: "Sua experiência faz toda a diferença. Avalie no Google.";
    display: block;
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--lux-gray);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
    .home-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 32px;
    }

    .home-image {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .home {
        min-height: auto;
    }

    .home-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .home-content h1 {
        margin-bottom: 16px;
    }

    .home-content p {
        margin-bottom: 24px;
    }

    .home-image {
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }

    .btn-primary,
    .btn-hero-animated {
        width: 100%;
        justify-content: center;
    }

    .testimonial-container {
        padding: 18px;
        border-radius: 18px;
    }

    .elfsight-reviews {
        min-height: 360px;
    }

    .btn-google-reviews {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.location {
    background-color: #fff;
    padding: 120px 32px;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.location-info h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
}

.location-address {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.location-address i {
    color: var(--pepper-red);
    font-size: 20px;
}

.location-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-map {
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-map.google {
    background: #111;
    color: #fff;
}

.btn-map.waze {
    border: 1px solid var(--pepper-red);
    color: var(--pepper-red);
}

.location-map iframe {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    border: none;
}

/* =========================================================
   RESPONSIVO – TABLET
   ========================================================= */
@media (max-width: 1024px) {

    .location-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVO – MOBILE
   ========================================================= */
@media (max-width: 768px) {

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .home {
        height: 80vh;
    }

    .location-map iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {

    section {
        padding: 80px 20px !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-map {
        width: 100%;
        justify-content: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: #fff;
    padding: 10px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseWhats 3s infinite;
}

.whatsapp-float i.fa-whatsapp {
    font-size: 20px;
    animation: shakeWhats 3s infinite;
}

/* Hover suave */
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

.whatsapp-float:hover i {
    animation-play-state: paused;
}

/* 🌶️ PIMENTA COMO PENSAMENTO */
.pepper-thought {
    position: absolute;
    top: -10px;
    right: -6px;
    font-size: 14px;
    color: #dc2626;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
    animation: pepperFloat 3.5s infinite;
}

/* animação da pimenta */
@keyframes pepperFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-4px) scale(1.08);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
}

/* pulse mais discreto */
@keyframes pulseWhats {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* balanço leve */
@keyframes shakeWhats {
    0%   { transform: rotate(0); }
    4%   { transform: rotate(5deg); }
    8%   { transform: rotate(-5deg); }
    12%  { transform: rotate(4deg); }
    16%  { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* 📱 MOBILE – pequeno e não invasivo */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float span {
        display: none;
    }

    .pepper-thought {
        top: -8px;
        right: -4px;
        font-size: 12px;
        padding: 3px;
    }
}