:root {
    --primary: #a05155;
    --secondary: #ff6f61;
    --text: #333;
    --bg: #fafafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    background: linear-gradient(to bottom, #fff, #f5f5f5);
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #eee;
}

header img {
    width: 190px;
    margin-bottom: 10px;
    border-radius: 50%;
    object-fit: cover;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

header h2 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin-top: 5px;
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

iframe {
    width: 100%;
    max-width: 900px;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cards */
.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Botão Reservar */
.reservar-button {
    display: inline-block;
    margin-bottom: 25px;
    background: var(--secondary);
    color: #fff;
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.reservar-button:hover {
    background: #e85c50;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

footer {
    background: #f5f5f5;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}