/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Suave e Natural */
    --beige-rose: #EDD4BE;  /* Bege rosado suave */
    --cream-white: #F2F3ED;  /* Branco creme */
    --sage-light: #BCC399;  /* Verde sage claro */
    --sage-dark: #778E69;   /* Verde sage escuro */
    
    /* Cores principais */
    --primary-color: #778E69;  /* Sage escuro - Principal */
    --primary-light: #BCC399;  /* Sage claro */
    --primary-dark: #5F7254;   /* Sage mais escuro */
    --secondary-color: #EDD4BE;  /* Bege rosado - Secundária */
    --secondary-light: #F5E8DC;
    --accent-color: #BCC399;  /* Sage claro - Destaques */
    
    /* Cores de texto e fundo */
    --text-dark: #3D4A35;
    --text-light: #6B7862;
    --bg-light: #F2F3ED;  /* Cream white */
    --bg-beige: #EDD4BE;  /* Beige rose */
    --white: #ffffff;
    
    /* Cores de status */
    --success: #778E69;  /* Sage escuro */
    --error: #A67C52;    /* Tom terroso suave */
    --warning: #BCC399;  /* Sage claro */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), 
                url('../images/hero-van.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Leisure Area Section */
.leisure-area {
    padding: 0;
    margin: 0;
}

.leisure-gradient {
    background: linear-gradient(to bottom, 
                rgba(107, 142, 111, 0.95) 0%, 
                rgba(107, 142, 111, 0.85) 50%,
                rgba(245, 245, 220, 0.3) 100%);
    padding: 5rem 0;
}

.leisure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.leisure-text {
    padding: 2rem;
}

.section-title-white {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.leisure-description {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.leisure-image-container {
    padding: 1rem;
}

.leisure-collage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.leisure-collage:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .leisure-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leisure-text {
        padding: 1rem;
        text-align: center;
    }
    
    .section-title-white {
        font-size: 2rem;
    }
    
    .leisure-description {
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

/* About Section */
.about {
    background: #eed6c1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px dashed transparent;
}

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

.service-coming-soon {
    border: 2px dashed var(--primary-light);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.coming-soon-badge {
    padding: 1rem;
    background: linear-gradient(135deg, var(--beige-rose) 0%, var(--secondary-light) 100%);
    border-radius: 8px;
    margin-top: 1rem;
    border: 2px solid var(--sage-light);
}

.coming-soon-badge span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.coming-soon-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 205, 145, 0.4);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.social-media .section-title {
    color: var(--white);
}

.social-media .section-title::after {
    background: var(--white);
}

.social-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.social-card:hover {
    transform: scale(1.05);
}

.social-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Location Section */
.location {
    background: var(--white);
    padding: 4rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.location-distance {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.location-address {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.location-address svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-address p {
    margin: 0.3rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.location-address strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.location-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.location-map-container:hover {
    transform: scale(1.02);
}

.location-map {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-text h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-text:hover {
    color: var(--primary-light);
}

.contact-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    order: -1;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 15px;
}

.footer-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.admin-link {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.3;
    transition: opacity 0.3s, transform 0.3s;
}

.admin-link:hover {
    opacity: 1;
    transform: scale(1.2);
}

.footer-cnpj {
    margin-top: 0.5rem;
}

.cnpj-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cnpj-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cnpj-badge svg {
    flex-shrink: 0;
}

.cnpj-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Service Detail Page */
.service-detail {
    padding-top: 100px;
    min-height: 100vh;
    background-color: white;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-info-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.info-item strong {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item span {
    font-size: 1.8rem;
    font-weight: 700;
}

.service-checkin-checkout {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.checkin-item,
.checkout-item {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.checkin-item strong,
.checkout-item strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: justify;
}

/* Gallery */
.gallery-section {
    margin: 3rem 0;
}

.gallery-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-image {
    height: 300px;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

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

/* Service Details Grid */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.detail-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.detail-box ul {
    list-style: none;
}

.detail-box li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Reserve Section */
.reserve-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    color: var(--white);
}

.reserve-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reserve-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5rem 0;
}

/* Reservation Form */
.reservation-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--bg-light);
}

.reservation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reservation-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reservation-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.reservation-price {
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: 600;
}

.reservation-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.form-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.info-highlight {
    background: white;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
}

.info-highlight h5 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.info-highlight p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.info-highlight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-highlight li {
    padding: 0.4rem 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-warning {
    background: white;
    padding: 1.2rem;
    border-radius: 6px;
    border-left: 3px solid #e67e22;
}

.info-warning h5 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.info-warning p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.warning-text {
    color: #e67e22 !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 0.5rem !important;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
}

.flash-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-success {
    background: var(--success);
    color: var(--white);
}

.flash-error {
    background: var(--error);
    color: var(--white);
}

.flash-info {
    background: #17a2b8;
    color: var(--white);
}

.flash-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-info-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .flash-messages {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}


/* Carrinho */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.service-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.btn-cart {
    background: var(--primary-color);
    color: white;
}

.btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 165, 101, 0.4);
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}


/* Calendário */
.calendar-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.calendar-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.calendar-rings {
    display: flex;
    justify-content: space-around;
    padding: 0 10%;
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
}

.ring {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c9954d 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.calendar-container {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-light) 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(119, 142, 105, 0.3);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    background: transparent;
}

.calendar-header h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.calendar-body {
    background: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
    padding: 0.5rem 0.3rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.85rem;
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
}

.calendar-day.available {
    background: linear-gradient(135deg, var(--beige-rose) 0%, var(--secondary-light) 100%);
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.calendar-day.available:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--beige-rose) 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(237, 212, 190, 0.3);
}

.calendar-day.reserved {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.calendar-day.reserved:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(119, 142, 105, 0.4);
}

.calendar-day.today {
    border: 3px solid var(--primary-color);
    font-weight: bold;
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 2rem 2rem 2rem;
    background: white;
    border-radius: 0 0 20px 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: #4a5568;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.legend-color.available {
    background: linear-gradient(135deg, var(--beige-rose) 0%, var(--secondary-light) 100%);
}

.legend-color.reserved {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-color) 100%);
}

@media (max-width: 768px) {
    .calendar-rings {
        padding: 0 5%;
    }
    
    .ring {
        width: 30px;
        height: 30px;
    }
    
    .ring::before {
        width: 15px;
        height: 15px;
    }
    
    .calendar-header {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .calendar-header h3 {
        font-size: 1.3rem;
    }
    
    .calendar-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .calendar-body {
        padding: 1rem;
    }
    
    .calendar-grid {
        gap: 6px;
    }
    
    .calendar-day {
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .calendar-day-header {
        font-size: 0.75rem;
        padding: 0.5rem 0.3rem;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
}


.cart-item-details {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-flag-btn {
    display: inline-block;
    padding: 0.3rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lang-flag-btn:hover {
    opacity: 1;
    border-color: var(--white);
    transform: scale(1.1);
}

.lang-flag-btn.active {
    opacity: 1;
    border-color: var(--white);
}

.lang-flag-btn .flag-icon {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    margin-top: 0.5rem;
    overflow: hidden;
    z-index: 1000;
}

.lang-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.lang-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.lang-menu a:hover {
    background: var(--bg-light);
}

.lang-menu a.active {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .lang-menu {
        right: auto;
        left: 0;
    }
}

/* Imagens das bandeiras */
.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 5px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.flag-icon-menu {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* ===================================
   PÁGINA DE PAGAMENTO PIX
   =================================== */

.pagamento-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 70vh;
}

.pagamento-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pagamento-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pagamento-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
}

.pagamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.qr-code-section {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.qr-code-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.qr-code-image {
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
}

.qr-code-instructions {
    text-align: left;
    line-height: 2;
    color: var(--text-dark);
    font-size: 1rem;
}

.copia-cola-section {
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.copia-cola-section h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.codigo-pix-wrapper {
    margin-bottom: 1.5rem;
}

.codigo-pix-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: vertical;
    margin-bottom: 1rem;
    background: #f9f9f9;
}

.btn-copiar-pix {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copiar-pix:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-copiar-pix.copiado {
    background: #28a745;
    color: white;
}

.copia-cola-instructions {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.resumo-pedido {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.resumo-pedido h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.resumo-items {
    margin-bottom: 1.5rem;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.item-nome {
    color: var(--text-dark);
}

.item-preco {
    font-weight: bold;
    color: var(--primary-color);
}

.resumo-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.total-label {
    color: var(--text-dark);
}

.total-valor {
    color: var(--primary-color);
}

.status-pagamento {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.status-indicator {
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.status-indicator.aguardando {
    background: #fff3cd;
    border: 2px solid #ffc107;
}

.status-indicator.aprovado {
    background: #d4edda;
    border: 2px solid #28a745;
}

.status-indicator.erro {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.status-indicator p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-indicator.aprovado .spinner,
.status-indicator.erro .spinner {
    display: none;
}

.status-info {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.info-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-box p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.acoes-pagamento {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.acoes-pagamento .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .pagamento-container {
        padding: 2rem 1rem;
    }

    .pagamento-header h1 {
        font-size: 2rem;
    }

    .pagamento-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qr-code-image {
        width: 250px;
        height: 250px;
    }

    .info-adicional {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .acoes-pagamento {
        flex-direction: column;
    }

    .acoes-pagamento .btn {
        width: 100%;
    }
}


/* ===================================
   PÁGINA DE PAGAMENTO PIX - DESIGN MODERNO
   =================================== */

.pagamento-pix-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    background: var(--bg-light);
    min-height: 100vh;
}

/* Header da Página */
.pagamento-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.pix-icon-large {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.pagamento-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.pagamento-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Layout Principal - 2 Colunas */
.pagamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Coluna Esquerda - QR Code */
.qr-code-section {
    animation: fadeInLeft 0.6s ease-out 0.4s both;
}

.qr-code-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(119, 142, 105, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.qr-code-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.qr-code-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 2rem;
    border: 3px solid var(--primary-light);
}

.qr-code-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.qr-instructions-list {
    text-align: left;
    margin-top: 1.5rem;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Coluna Direita - Informações */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 0.6s ease-out 0.4s both;
}

/* Card de Resumo */
.resumo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(119, 142, 105, 0.1);
}

.resumo-card h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.resumo-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.resumo-item:hover {
    background: var(--secondary-light);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.item-details {
    display: flex;
    flex-direction: column;
}

.item-nome {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.item-quantidade {
    font-size: 0.85rem;
    color: var(--text-light);
}

.item-preco {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.resumo-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.total-valor {
    font-size: 1.5rem;
}

/* Card de Copia e Cola */
.copia-cola-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(119, 142, 105, 0.1);
}

.copia-cola-card h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.copia-cola-wrapper {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.pix-code-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: border-color 0.3s ease;
}

.pix-code-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-copiar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copiar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(119, 142, 105, 0.3);
}

.btn-copiar:active {
    transform: translateY(0);
}

.btn-copiar.copiado {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.copia-cola-instructions {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.copia-cola-instructions strong {
    color: var(--primary-color);
}

/* Card de Status */
.status-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(119, 142, 105, 0.1);
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-indicator span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.status-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-verificar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-verificar:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(119, 142, 105, 0.3);
}

/* Informações de Segurança */
.seguranca-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(119, 142, 105, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 968px) {
    .pagamento-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qr-code-card,
    .resumo-card,
    .copia-cola-card,
    .status-card {
        padding: 1.5rem;
    }
    
    .pagamento-header h1 {
        font-size: 2rem;
    }
    
    .qr-code-image {
        max-width: 240px;
    }
}

@media (max-width: 576px) {
    .pagamento-pix-container {
        padding: 5rem 1rem 2rem;
    }
    
    .pagamento-header h1 {
        font-size: 1.6rem;
    }
    
    .pagamento-header .subtitle {
        font-size: 1rem;
    }
    
    .copia-cola-wrapper {
        flex-direction: column;
    }
    
    .btn-copiar {
        width: 100%;
        justify-content: center;
    }
    
    .qr-code-wrapper {
        padding: 1.5rem;
    }
    
    .qr-code-image {
        max-width: 200px;
    }
}


/* Bandeiras na seção de contato */
.contact-flag {
    width: 24px;
    height: 16px;
    margin-left: 8px;
    margin-right: 4px;
    border-radius: 2px;
    object-fit: cover;
    vertical-align: middle;
}

/* Labels Check-in/Check-out */
.checkin-item small,
.checkout-item small {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkin-item strong,
.checkout-item strong {
    font-size: 1.5rem;
    color: #2d5016;
}
.cart-page .footer {
    display: none;
}
