@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root {
    --primary-color: #151729;
    --secondary-color: #c5a66a;
    --text-color: #333;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-medium: #f0f2f5;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
    overflow-x: hidden; /* Previne rolagem horizontal */
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: #fff;
}

.navbar .logo img {
    height: 45px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 25px;
}

.navbar .nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-section {
    background-image: url('banners/banner-site.jpg'); 
    background-size: cover;
    background-position: center 60%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    color: #fff;
    padding: calc(70px + 40px) 60px 60px 60px;
    border-radius: 0px 0px 20px 20px;
}

.hero-overlay {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
    border-radius: 0px 0px 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 650px;
}

#booking-widget-container {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 980px;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 100;
}

.form-intro-text-new {
    display: block;
    text-align: left;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    padding-left: 5px;
}

.booking-form-new {
    display: flex;
    align-items: center;
    gap: 0;
}

.form-field-new {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    padding: 0 15px;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    height: 44px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.form-field-new:hover,
.form-field-new.active {
    background-color: #f0f8f8;
}

.booking-form-new .form-field-new:last-of-type {
    border-right: none;
}

.form-field-new i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.field-text {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.field-text .placeholder {
    opacity: 0.8;
}

.field-text .value {
    font-weight: 600;
}

#booking-submit-new {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    height: 44px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#booking-submit-new:hover {
    background-color: #1a3837;
}

#booking-submit-new i {
    margin-left: 10px;
}

.booking-popup {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 110;
    width: 360px;
    text-align: left;
}

.booking-popup.active {
    display: block;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.popup-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
}

#popup-destination .destination-city-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 10px 10px 5px;
    margin-top: 10px;
    border-bottom: 1px solid #f0f0f0;
}
#popup-destination .destination-city-header:first-of-type {
    margin-top: 0;
}

#popup-destination .destination-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#popup-destination .destination-option:hover {
    background-color: #f0f8f8;
}

#popup-destination .destination-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

#popup-destination span {
    font-size: 0.9rem;
    color: var(--text-light);
}

#popup-people {
    width: auto;
}

.pax-control {
    background-color: #f7f7f7;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.pax-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pax-label span {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.pax-label .pax-age {
    font-size: 0.75rem;
    color: #777;
    font-weight: 400;
}

.pax-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pax-counter button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.pax-counter button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pax-counter .pax-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    min-width: 12px;
    text-align: center;
}

.flatpickr-calendar {
    font-size: 13px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flatpickr-day {
    height: 32px;
    line-height: 32px;
    max-width: 32px;
}

.hotel-intro-block {
    padding: 60px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.intro-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.intro-main-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-main-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 25px 0;
    line-height: 1.1;
}

.info-box {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    width: fit-content;
}

.info-box i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 12px;
}

.intro-description {
    color: var(--text-light);
    max-width: 600px;
    font-size: 0.95rem;
}

.intro-sidebar .promo-box {
    background-color: #eaf3f6;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #d0e0e8;
}

.promo-box h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.promo-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.promo-box .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.secondary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.secondary-nav-links {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.secondary-nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.secondary-nav-links a:hover {
    color: var(--primary-color);
}

.secondary-reserve-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.secondary-reserve-btn:hover {
    background-color: #1a3837;
}

.hotel-promo-section {
    padding: 60px 20px;
    background-color: var(--bg-medium);
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.city-section {
    margin-top: 40px;
}
.city-section:first-of-type {
    margin-top: 0;
}

.city-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.hotel-grid-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-card {
    flex: 1 1 278px;
    max-width: 278px;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.hotel-card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: filter 0.4s ease;
}

.hotel-card:hover .hotel-card-bg-image {
    filter: brightness(0.9);
}

.hotel-card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
}

.hotel-card-overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hotel-card-overlay-content .hotel-info {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.hotel-card-overlay-content .hotel-info i {
    margin-right: 8px;
    font-size: 1rem;
}

.hotel-card-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #555;
    padding: 25px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hotel-card:hover .hotel-card-hover-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.hotel-card-hover-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hotel-details-pills {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hotel-details-pills li {
    display: inline-block;
    background-color: #f0f2f5;
    color: #555;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

.hotel-details-pills li i {
    margin-right: 6px;
}

.btn-reserve {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.map-container {
    margin: 40px auto 0 auto;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.londrina-layout-grid {
    display: grid;
    grid-template-columns: 278px 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.londrina-layout-grid .hotel-card {
    margin: 0;
    width: 100%;
    max-width: 278px;
}

.londrina-layout-grid .map-container {
    margin-top: 0;
    height: 100%;
    width: 100%; /* Garante que o container do mapa preencha a célula do grid */
}

.londrina-layout-grid .map-container iframe {
    height: 100%;
    min-height: 420px;
}

.carousel-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
}
.carousel-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.carousel-section .carousel-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}
.image-carousel {
    position: relative;
    max-width: 100%;
}
.carousel-track-wrapper { 
    overflow: hidden; 
    max-width: 1200px;
    margin: 0 auto;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    padding: 0 calc(50% - 40%);
}
.carousel-slide {
    flex: 0 0 80%;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex; justify-content: center; align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 12px;
}
.carousel-slide:hover .slide-overlay { opacity: 1; }
.slide-overlay h3 { font-size: 1.5rem; margin: 0; padding: 1rem; text-align: center; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); }
.carousel-nav { margin-top: 40px; display: flex; justify-content: center; gap: 20px; }
.carousel-btn { background-color: transparent; border: 1px solid var(--border-color); color: var(--text-light); width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: all 0.3s; }
.carousel-btn:hover { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.carousel-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.services-section-wrapper { background-color: #f5f3f0; border-radius: 20px; padding: 50px; margin: 60px auto; max-width: 1200px;}
.services-section-wrapper h2 { font-size: 2.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.service-column h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-color); margin-bottom: 25px; }
.service-column ul { list-style: none; padding: 0; }
.service-column li { display: flex; align-items: flex-start; margin-bottom: 20px; font-size: 0.95rem; color: var(--text-light); }
.service-column li i { font-size: 1.1rem; color: var(--primary-color); margin-right: 12px; margin-top: 4px; width: 20px; text-align: center; }
.service-item-text { display: flex; flex-direction: column; }
.service-item-text span { font-size: 0.8rem; color: #888; }
.btn-outline { background-color: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 10px 25px; border-radius: 30px; text-decoration: none; font-weight: 600; display: inline-block; margin-top: 15px; transition: all 0.3s ease; }
.btn-outline:hover { background-color: var(--primary-color); color: #fff; }

.gastronomy-section { padding: 80px 20px; }
.gastronomy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto;}
.gastronomy-image-wrapper { position: relative; }
.gastronomy-image-wrapper img { width: 100%; border-radius: 12px; display: block; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.gastronomy-content .icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.gastronomy-content h2 { font-size: 2.8rem; font-weight: 800; color: var(--primary-color); margin-bottom: 5px; }
.gastronomy-content h3 { font-size: 0.9rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.gastronomy-content p { color: var(--text-light); margin-bottom: 25px; }
.options-pills { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; margin-bottom: 20px; }
.pill-item { background-color: #f0f3f5; padding: 12px 18px; border-radius: 8px; color: var(--text-light); display: flex; align-items: center; font-weight: 500; font-size: 0.9rem; }
.pill-item i { color: var(--primary-color); margin-right: 12px; }
.disclaimer { font-size: 0.85rem; color: #888; font-style: italic; line-height: 1.5; }

.testimonials-section-dark { background-color: #1a202c; color: #fff; padding: 60px 40px; margin: 80px 20px; border-radius: 24px; position: relative; }
.testimonials-header-dark { max-width: 700px; margin: 0 auto 50px auto; padding: 0 20px; text-align: center; }
.testimonial-slider-viewport { position: relative; width: 100%; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-slider-track { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-card-dark { flex: 0 0 100%; box-sizing: border-box; background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 30px; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-card-dark .stars { color: #f39c12; }
.testimonial-card-dark a { color: #ccc; text-decoration: underline; font-size: 0.9rem; margin-top: auto; }
.testimonial-slider-nav { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.slider-arrow { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.3); color: white; width: 45px; height: 45px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background-color 0.3s, border-color 0.3s; }
.slider-arrow:hover { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.slider-arrow:disabled { background-color: rgba(74, 85, 104, 0.8); border-color: rgba(74, 85, 104, 0.8); opacity: 0.8; cursor: not-allowed; }

.site-footer { background-color: var(--bg-light); color: #5f6c7b; padding: 50px 20px 20px; font-size: 0.9rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; max-width: 1200px; margin: 0 auto 40px auto; }
.footer-column { flex: 1; min-width: 180px; }
.footer-column h5 { font-size: 1rem; font-weight: 600; color: var(--text-color); margin-bottom: 15px; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: #5f6c7b; text-decoration: none; transition: color 0.3s ease; }
.footer-column ul li a:hover { color: var(--secondary-color); text-decoration: underline; }
.footer-separator { border: none; height: 1px; background-color: #e9ecef; margin: 30px auto; max-width: 1200px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; max-width: 1200px; margin: 0 auto; }
.footer-brand { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); }
.footer-brand span { font-weight: 500; }
.footer-social-icons a { color: #555; font-size: 1.3rem; margin-left: 15px; transition: color 0.3s ease; }
.footer-social-icons a:hover { color: var(--secondary-color); }
.footer-copyright { max-width: 1200px; margin: 0 auto; padding-top: 20px; font-size: 0.8rem; text-align: center; }

.newsletter-section-dual {
    padding: 20px;
    background-color: var(--bg-medium);
}
.container-dual {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.newsletter-content-left {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.section-title-dual {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-subtitle-dual {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}
.newsletter-form-dual {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group-dual {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group-dual label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group-dual input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--bg-light);
}
.form-group-dual input::placeholder {
    color: #a0a0a0;
}
.form-group-dual input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(21, 23, 41, 0.1);
}
.cta-button-dual {
    width: auto;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    align-self: flex-start;
}
.cta-button-dual:hover {
    background-color: #c0392b;
}
.newsletter-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* ====================================================== */
/* ============== REGRAS DE RESPONSIVIDADE ============== */
/* ====================================================== */
@media (max-width: 992px) {
    .intro-container { grid-template-columns: 1fr; }
    .booking-form-new { flex-direction: column; gap: 10px; align-items: stretch; }
    .form-field-new { border-right: none; border-bottom: 1px solid #e0e0e0; padding: 12px 10px; }
    .booking-form-new .form-field-new:last-of-type { border-bottom: none; }
    #booking-submit-new { width: 100%; margin-top: 10px; padding: 15px 25px; }
    .booking-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: calc(100% - 40px); max-width: 400px; }
    .carousel-slide { flex-basis: 90%; }
    .carousel-track { padding: 0 calc(50% - 45%); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gastronomy-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .container-dual { flex-direction: column; margin: 20px auto; border-radius: 0; }
    .newsletter-content-left { padding: 30px 20px; }
    .section-title-dual { font-size: 2rem; }
    .section-subtitle-dual { font-size: 0.95rem; }
    .newsletter-image-right { min-height: 250px; border-radius: 0; }
    .cta-button-dual { width: 100%; align-self: center; }

    /* Ajustes para o layout de Londrina em telas médias */
    .londrina-layout-grid { 
        grid-template-columns: 1fr; 
        max-width: 500px; 
        justify-items: center; 
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    
    /* Ajuste de card para telas pequenas */
    .hotel-card {
        flex-basis: 100%;
        max-width: 400px;
    }

    .londrina-layout-grid { 
        max-width: 100%; 
    }
}
