/* ===================================
   CASA DA QUIANA - GUEST GUIDE
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:"Segoe UI", Arial, sans-serif;

    background:
        radial-gradient(
            circle at top left,
            rgba(206,247,221,.95),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(31,95,53,.08),
            transparent 45%
        ),

        linear-gradient(
            180deg,
            #f8fcf9 0%,
            #eef8f1 100%
        );

    color:#2d2d2d;

    line-height:1.6;

    min-height:100vh;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================
   LANGUAGE SWITCH
=================================== */

.language-switch{

    display:flex;

    justify-content:flex-end;

    gap:10px;

    margin-bottom:20px;

}

.language-switch a{

    display:flex;

    align-items:center;

    gap:6px;

    padding:8px 14px;

    background:#ffffff;

    border-radius:12px;

    color:#666;

    font-size:.9rem;

    font-weight:600;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);

    transition:.2s;

}

.language-switch a:hover{

    transform:translateY(-2px);

}

.language-switch a.active{

    background:#1f5f35;

    color:#ffffff;

}

/* ===================================
   SUBTÍTULOS DE CONTEÚDO
=================================== */

.content-card h3{

    color:#1f5f35;

    margin-top:20px;

    margin-bottom:10px;

    font-size:1rem;

}

/* ===================================
   APP CONTAINER
=================================== */

.app{

    max-width:1100px;

    margin:20px auto;

    padding:25px;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(12px);

    border-radius:28px;

}

/* ===================================
   HEADER
=================================== */

.topbar{
    text-align:center;
    margin-bottom:30px;
}

.brand img{
    width:260px;
    max-width:100%;
    margin:0 auto;
}

/* ===================================
   HERO
=================================== */

.hero{
    text-align:center;
    margin-bottom:50px;
}

.hero h1,
.hero h2{
    color:#1f5f35;
    font-size:2rem;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    margin:0 auto;
    color:#555;
}

/* ===================================
   MENU PRINCIPAL
=================================== */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:40px;
}

/* ===================================
   CARTÕES MENU
=================================== */

.card{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:18px;

    padding:25px;

    text-align:center;

    min-height:140px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 8px 24px rgba(0,0,0,0.08);

    transition:all .25s ease;

}

.card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(0,0,0,0.12);

}

.card span{
    font-size:2.2rem;
    margin-bottom:12px;
}

.card h2,
.card h3{
    color:#1f5f35;
}

/* ===================================
   QUICK INFO
   WiFi, Check-in, Check-out, Contacto
=================================== */

.quick-info{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin-top:20px;

}

.quick-info .info-card{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:18px;

    padding:25px;

    min-height:140px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:0 8px 24px rgba(0,0,0,0.08);

}

.quick-info .info-card h2{

    color:#1f5f35;

    font-size:1.1rem;

    margin-bottom:10px;

}

.quick-info .info-card p{

    color:#1f5f35;

    font-size:1.3rem;

    font-weight:700;

    margin:0;

}

/* Password Wi-Fi */

.quick-info .info-card small{

    display:block;

    margin-top:8px;

    font-size:.9rem;

    color:#666;

}

/* ===================================
   PÁGINAS INTERNAS
=================================== */

.page-title{

    color:#1f5f35;

    margin-bottom:25px;

}

.content-card{

    background:#ffffff;

    padding:20px;

    border-radius:15px;

    margin-bottom:15px;

    box-shadow:0 3px 10px rgba(0,0,0,0.05);

}

.content-card h2{

    color:#1f5f35;

    margin-bottom:10px;

}

/* ===================================
   FOOTER
=================================== */

footer{

    text-align:center;

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid #ddd;

}

footer p{

    color:#888;

    font-size:.9rem;

}
/* ===================================
   WHATSAPP
=================================== */

.whatsapp-section{

    margin-top:25px;

}

.whatsapp-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    background:#25D366;

    color:#ffffff;

    min-height:75px;

    border-radius:18px;

    font-size:1.2rem;

    font-weight:600;

    box-shadow:0 6px 18px rgba(37,211,102,.25);

    transition:all .25s ease;

}

.whatsapp-button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,211,102,.35);

}

.whatsapp-icon img{

    width:34px;

    height:34px;

    display:block;

}

.whatsapp-text{

    color:#ffffff;

}

/* ===================================
   MOBILE FIRST
=================================== */

@media (max-width:768px){

    .app{
        padding:15px;
    }

    .brand img{
        width:220px;
    }

    .hero{
        margin-bottom:35px;
    }

    .hero h1,
    .hero h2{
        font-size:1.7rem;
    }

    .hero p{
        font-size:.95rem;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    .quick-info{
        grid-template-columns:1fr;
    }

    .card,
    .quick-info .info-card{

        min-height:120px;

        padding:20px;

    }

    .quick-info .info-card p{

        font-size:1.2rem;

    }
    

}
/* ===================================
   GOOGLE MAPS BUTTON
=================================== */

.maps-button{

    display:inline-block;

    margin-top:15px;

    padding:12px 18px;

    background:#1f5f35;

    color:#ffffff;

    border-radius:12px;

    font-weight:600;

    transition:.2s;

}

.maps-button:hover{

    transform:translateY(-2px);

    opacity:.95;

}
/* ===================================
   RESTAURANTES
=================================== */

.restaurant-card{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.6);

}

.restaurant-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.restaurant-info{

    flex:1;

    text-align:left;

}

.restaurant-info h2{

    margin-bottom:10px;

}

.restaurant-info p{

    color:#555;

}

.restaurant-photo{

    flex-shrink:0;

}

.restaurant-image{

    width:140px;

    height:140px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:0 4px 12px rgba(0,0,0,.10);

}

.restaurant-actions{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:15px;

}

.phone-button,
.maps-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 18px;

    border-radius:12px;

    color:#ffffff;

    font-weight:600;

    transition:.2s;

}

.phone-button{

    background:#1f5f35;

}

.maps-button{

    background:#2f7a45;

}

.phone-button:hover,
.maps-button:hover{

    transform:translateY(-2px);

}
/* ===================================
   RESTAURANTES MOBILE
=================================== */

@media (max-width:768px){

    .restaurant-content{

        flex-direction:column-reverse;

        text-align:center;

    }

    .restaurant-info{

        text-align:center;

    }

    .restaurant-image{

        width:120px;

        height:120px;

    }

    .restaurant-actions{

        flex-direction:column;

        align-items:center;

        width:100%;

    }

    .phone-button,
    .maps-button{

        width:100%;

        max-width:280px;

        margin:0;

    }

}