/**
 * CSS para Landing Pages de Caravanas - Frontend
 * Eternum Dei
 */

/* Reset e variáveis */
:root {
    --lp-brand: #B37D19;
    --lp-primary: #053666;
    --lp-secondary: #B37D19;
    --lp-dark: #021f3d;
    --lp-gold: #B37D19;
    --lp-white: #ffffff;
    --lp-light: #f8f9fa;
    --lp-text: #4a5568;
    --lp-gradient: linear-gradient(135deg, #053666 0%, #B37D19 100%);
    --lp-day-gradient: #053666;
    --lp-shadow: 0 10px 40px rgba(0,0,0,0.1);
    --lp-radius: 15px;
    --lp-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--lp-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Ocultar badge do reCAPTCHA v3 */
.grecaptcha-badge {
    visibility: hidden !important;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: var(--lp-transition);
}

.lp-header .lp-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo {
    flex-shrink: 0;
    line-height: 0;
}

.lp-logo img {
    height: auto;
    width: auto;
    max-height: 68px;
    max-width: min(280px, 46vw);
    object-fit: contain;
    display: block;
}

.lp-nav {
    display: flex;
    gap: 30px;
}

.lp-nav a {
    color: var(--lp-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--lp-transition);
}

.lp-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-gradient);
    transition: width 0.3s;
}

.lp-nav a:hover {
    color: var(--lp-primary);
}

.lp-nav a:hover::after {
    width: 100%;
}

.lp-mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--lp-dark);
    cursor: pointer;
}

/* Banner */
.lp-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 540px;
    max-height: 1080px;
    overflow: hidden;
    margin-top: 80px;
}

.lp-banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.lp-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.lp-banner-slide.active {
    opacity: 1;
}

.lp-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--lp-dark);
    z-index: 10;
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-banner-arrow:hover {
    background: var(--lp-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lp-banner-prev {
    left: 30px;
}

.lp-banner-next {
    right: 30px;
}

.lp-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 80px 0 50px;
}

.lp-banner-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.lp-banner-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.lp-banner-countries {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.lp-banner-duration {
    display: inline-block;
    padding: 10px 30px;
    background: var(--lp-gradient);
    border-radius: 50px;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão de contato flutuante */
.lp-contact-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.lp-contact-float-btn {
    width: 60px;
    height: 60px;
    background: var(--lp-dark);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(26, 43, 60, 0.35);
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-contact-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(26, 43, 60, 0.45);
}

.lp-contact-float-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: var(--lp-radius);
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--lp-transition);
}

.lp-contact-float-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lp-popup-header {
    background: var(--lp-dark);
    color: white;
    padding: 20px;
    border-radius: var(--lp-radius) var(--lp-radius) 0 0;
    position: relative;
}

.lp-popup-header h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.lp-popup-header p {
    font-size: 18px;
    font-weight: 600;
}

.lp-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-popup-body {
    padding: 20px;
}

.lp-popup-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    margin-bottom: 10px;
    background: var(--lp-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--lp-dark);
    transition: var(--lp-transition);
}

.lp-popup-item:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.lp-popup-item i {
    width: 40px;
    height: 40px;
    background: var(--lp-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.lp-popup-item span {
    display: block;
    word-break: break-word;
    padding-right: 6px;
}

.lp-popup-item:first-child i {
    background: #25d366;
}

/* Section Title */
.lp-section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 40px;
    color: var(--lp-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.lp-section-title::after {
    content: none;
}

/* Introdução */
.lp-intro {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.lp-intro-dates {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: var(--lp-light);
    border-radius: 50px;
    color: var(--lp-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.lp-intro-dates i {
    font-size: 16px;
}

.lp-intro-caravana {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 32px;
    color: var(--lp-dark);
    margin-bottom: 20px;
}

.lp-intro-subtitulo {
    font-size: 20px;
    color: var(--lp-text);
    max-width: 800px;
    margin: 0 auto;
}

/* Acomodações */
.lp-accommodations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lp-acc-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}

.lp-acc-table {
    width: 100%;
    border-collapse: collapse;
}

.lp-acc-table th {
    background: var(--lp-dark);
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-acc-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.lp-acc-table tr:hover td {
    background: #f8f9fa;
}

/* Preços */
.lp-prices {
    padding: 80px 0;
    background: var(--lp-dark);
}

.lp-prices-card {
    background: white;
    border-radius: var(--lp-radius);
    padding: 50px;
    box-shadow: var(--lp-shadow);
    position: relative;
    overflow: hidden;
}

.lp-prices-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--lp-gradient);
}

.lp-prices-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    color: var(--lp-dark);
    text-align: center;
    margin-bottom: 40px;
}

.lp-prices-content {
    font-size: 16px;
    line-height: 1.8;
}

.lp-prices-content h3,
.lp-prices-content h4 {
    color: var(--lp-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.lp-prices-content hr {
    border: none;
    height: 2px;
    background: #eee;
    margin: 30px 0;
}

/* Inclui / Não Inclui */
.lp-includes {
    padding: 80px 0;
    background: white;
}

.lp-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.lp-includes-col {
    background: var(--lp-light);
    border-radius: var(--lp-radius);
    padding: 30px;
}

.lp-includes-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-includes-yes h3 {
    color: var(--lp-secondary);
}

.lp-includes-no h3 {
    color: #dc3545;
}

.lp-includes-col ul {
    list-style: none;
}

.lp-includes-col li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-includes-col li:last-child {
    border-bottom: none;
}

.lp-includes-yes li i {
    color: var(--lp-secondary);
}

.lp-includes-no li i {
    color: #dc3545;
}

/* Destinos */
.lp-destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9ff 100%);
}

.lp-destination-card {
    background: white;
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--lp-shadow);
}

.lp-destination-header {
    padding: 25px 30px;
    background: var(--lp-dark);
}

.lp-destination-header h3 {
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lp-destination-content {
    font-size: 16px;
    line-height: 1.8;
}

.lp-gallery-card .lp-gallery-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
    padding: 30px;
}

.lp-gallery-left,
.lp-gallery-right {
    min-width: 0;
}

.lp-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lp-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #eef2f5;
}

.lp-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--lp-transition);
}

.lp-gallery-nav:hover {
    background: rgba(0,0,0,0.65);
}

.lp-gallery-prev {
    left: 12px;
}

.lp-gallery-next {
    right: 12px;
}

.lp-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lp-gallery-thumb {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

.lp-gallery-thumb img {
    width: 90px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.lp-gallery-thumb.active {
    border-color: var(--lp-primary);
}

.lp-gallery-right .lp-destination-content,
.lp-gallery-right .lp-hotel-content {
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
}

/* Hotéis */
.lp-hotels {
    padding: 80px 0;
    background: white;
}

.lp-hotel-card {
    background: var(--lp-light);
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--lp-shadow);
}

.lp-hotel-header {
    padding: 20px 30px;
    background: var(--lp-dark);
}

.lp-hotel-header h3 {
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-hotel-header h3 i {
    color: var(--lp-gold);
}

.lp-hotel-content {
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .lp-gallery-card .lp-gallery-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .lp-gallery-thumb img {
        width: 72px;
        height: 52px;
    }
}

@media (max-width: 900px) {
    .lp-day-body {
        grid-template-columns: 1fr;
        display: block;
    }

    .lp-day-media {
        order: 1;
        margin-bottom: 16px;
    }

    .lp-day-description {
        order: 2;
    }
}

/* Itinerário */
.lp-itinerary {
    padding: 80px 0;
    background: linear-gradient(135deg, #021f3d 0%, #053666 100%);
}

.lp-itinerary .lp-section-title {
    color: white;
}

.lp-itinerary-timeline {
    position: relative;
    padding-left: 50px;
}

.lp-itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.lp-itinerary-day {
    position: relative;
    margin-bottom: 30px;
}

.lp-day-marker {
    position: absolute;
    left: -50px;
    top: 20px;
}

.lp-day-number {
    display: inline-block;
    padding: 8px 15px;
    background: #ffffff;
    color: var(--lp-dark);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.lp-day-content {
    background: white;
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-left: 20px;
}

.lp-day-header {
    padding: 20px 25px;
    background: var(--lp-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-day-header h3 {
    font-size: 20px;
    color: var(--lp-dark);
}

.lp-day-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-primary);
    font-weight: 500;
}

.lp-day-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    padding: 20px 25px 25px;
    align-items: start;
}

.lp-day-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-day-photo-main {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f5;
    aspect-ratio: 16 / 9;
}

.lp-day-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-day-photo-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.lp-day-photo-thumbs img {
    width: 90px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.lp-day-description {
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
}

/* Formulário de Contato */
.lp-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.lp-contact-info {
    background: var(--lp-dark);
    color: white;
    padding: 40px;
    border-radius: var(--lp-radius);
}

.lp-contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.lp-contact-info > p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.lp-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lp-contact-item i {
    width: 50px;
    height: 50px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.lp-contact-item:first-of-type i {
    background: #25d366;
}

.lp-contact-item strong {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    font-weight: 400;
}

.lp-contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.lp-contact-item a:hover {
    color: var(--lp-primary);
}

.lp-contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}

.lp-form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.lp-form-success {
    background: #d4edda;
    color: #155724;
}

.lp-form-error {
    background: #f8d7da;
    color: #721c24;
}

.lp-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
}

.lp-form-group.lp-form-full {
    grid-column: 1 / -1;
}

.lp-form-group label {
    font-weight: 600;
    color: var(--lp-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--lp-transition);
}

.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
    border-color: var(--lp-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 43, 60, 0.12);
}

.lp-form-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--lp-dark);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--lp-transition);
    margin-top: 20px;
}

.lp-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 43, 60, 0.35);
}

.lp-recaptcha-note {
    margin-top: 12px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

/* Sobre */
.lp-about {
    padding: 80px 0;
    background: white;
}

.lp-about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.lp-about-content p,
.lp-terms-content p {
    margin: 0 0 10px;
}

.lp-about-content ul,
.lp-about-content ol,
.lp-terms-content ul,
.lp-terms-content ol {
    padding-left: 22px;
    margin: 12px 0;
}

.lp-about-content ul,
.lp-terms-content ul {
    list-style: disc;
}

.lp-about-content ol,
.lp-terms-content ol {
    list-style: decimal;
}

.lp-about-content li,
.lp-terms-content li {
    margin-bottom: 6px;
}

/* Termos */
.lp-terms {
    padding: 40px 0;
    background: var(--lp-light);
}

.lp-terms-accordion {
    background: white;
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-terms-accordion summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--lp-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.lp-terms-accordion summary::-webkit-details-marker {
    display: none;
}

.lp-terms-accordion summary::after {
    content: '+';
    margin-left: auto;
    font-size: 24px;
    font-weight: 300;
}

.lp-terms-accordion[open] summary::after {
    content: '−';
}

.lp-terms-content {
    padding: 0 25px 25px;
    font-size: 14px;
    line-height: 1.8;
}

/* Footer */
.lp-footer {
    background: var(--lp-dark);
    color: white;
    padding: 50px 0;
}

.lp-footer-content {
    text-align: center;
}

.lp-footer-logo img {
    height: auto;
    max-height: 150px;
    width: auto;
    max-width: min(380px, 92vw);
    object-fit: contain;
    margin-bottom: 25px;
}

.lp-footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.lp-footer-social a {
    width: 45px;
    height: 45px;
    background: #B37D19;
    color: #053666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--lp-transition);
}

.lp-footer-social a:hover {
    background: #956615;
    color: #053666;
    transform: translateY(-3px);
}

.lp-footer-copyright {
    opacity: 0.7;
    font-size: 14px;
}

.lp-footer-copyright p {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-banner-title {
        font-size: 42px;
    }
    
    .lp-section-title {
        font-size: 34px;
    }
    
    .lp-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lp-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .lp-nav.active {
        display: flex;
    }
    
    .lp-mobile-menu {
        display: block;
    }
    
    .lp-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .lp-banner-title {
        font-size: 32px;
    }
    
    .lp-banner-countries {
        font-size: 18px;
    }
    
    .lp-banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .lp-banner-prev {
        left: 15px;
    }
    
    .lp-banner-next {
        right: 15px;
    }
    
    .lp-section-title {
        font-size: 28px;
    }
    
    .lp-intro,
    .lp-accommodations,
    .lp-prices,
    .lp-includes,
    .lp-destinations,
    .lp-hotels,
    .lp-itinerary,
    .lp-contact,
    .lp-about {
        padding: 50px 0;
    }
    
    .lp-includes-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-form-row {
        grid-template-columns: 1fr;
    }
    
    .lp-itinerary-timeline {
        padding-left: 30px;
    }
    
    .lp-day-marker {
        left: -30px;
    }
    
    .lp-day-number {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .lp-day-content {
        margin-left: 10px;
    }
    
    .lp-acc-table th,
    .lp-acc-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .lp-contact-float {
        bottom: 20px;
        right: 20px;
    }
    
    .lp-contact-float-popup {
        width: 280px;
        right: -10px;
    }

    .lp-contact-grid {
        gap: 30px;
        justify-items: stretch;
    }

    .lp-contact-info,
    .lp-contact-form-wrapper {
        width: 100%;
    }

    .lp-day-body {
        display: block !important;
    }

    .lp-day-body > * {
        width: 100%;
    }

    .lp-day-media {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .lp-logo img {
        height: auto;
        max-height: 58px;
        max-width: min(230px, 88vw);
    }
    
    .lp-banner-title {
        font-size: 26px;
    }
    
    .lp-prices-card {
        padding: 30px 20px;
    }
    
    .lp-contact-info,
    .lp-contact-form-wrapper {
        padding: 25px;
    }
}
