/* Estilos para o site Let's On */

/*
Theme Name: Let's On Premium
Theme URI: https://letsonviagens.com.br
Author: Manus AI
Author URI: https://letsonviagens.com.br
Description: Tema premium personalizado para a agência Let's On, com design moderno e responsivo.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lets-on
Tags: responsive, premium, travel, agency
*/

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Lato:wght@300;400;500;700&display=swap');

/* Variáveis de cores */
:root {
    --primary-color: #104199;
    --secondary-color: #3aaa35;
    --tertiary-color: #878787;
    --light-color: #ffffff;
    --dark-color: #333333;
    --bg-light: #f9f9f9;
    --bg-dark: #222222;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(16, 65, 153, 0.7);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-gradient: linear-gradient(to bottomlinear-gradient(to bottom, rgba(16, 65, 153, 0.8), rgba(58, 170, 53, 0));, rgba(16, 65, 153, 0.8), rgba(58, 170, 53, 0.6));
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Marca d'água */
.watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/logo-watermark.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.watermark-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/logo-watermark.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.plane-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/plane-pattern.png');
    background-repeat: repeat;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

/* Barra de promoções */
.promo-bar {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-text {
    margin: 0 15px;
    display: inline-block;
}

.promo-highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Header */
.site-header {
    background-color: var(--light-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    margin-left: 20px;
    position: relative;
}

.main-menu a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 1;
}

.main-menu a:hover,
.main-menu .current-menu-item a {
    color: var(--secondary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu .current-menu-item a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 300px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
}

/* Seção de Busca */
.search-section {
    background-color: var(--bg-light);
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.savings-bar {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.savings-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 5px 10px;
}

.savings-highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.search-container {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.search-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--tertiary-color);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.search-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 65, 153, 0.1);
}

.form-submit {
    margin-top: 10px;
    text-align: center;
}

/* Destinos */
.destinos {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.destination-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: url('assets/images/world-dots.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.destination-bg-1 {
    top: -100px;
    left: -100px;
}

.destination-bg-2 {
    bottom: -100px;
    right: -100px;
    transform: rotate(180deg);
}

.destination-bg-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destino-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.destino-img {
    height: 250px;
    overflow: hidden;
}

.destino-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destino-card:hover .destino-img img {
    transform: scale(1.1);
}

.destino-info {
    padding: 25px;
}

.destino-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.destino-info p {
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.destino-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--tertiary-color);
    font-size: 1rem;
    font-weight: 400;
}

.per-person {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--tertiary-color);
}

.discount {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-left: auto;
}

.destino-installments {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

/* Pacotes Nacionais */
.pacotes-nacionais {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
}

.countdown-timer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px 15px;
    min-width: 70px;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 5px;
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.pacote-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.discount-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    z-index: 1;
}

.pacote-img {
    height: 200px;
    overflow: hidden;
}

.pacote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.pacote-card:hover .pacote-img img {
    transform: scale(1.1);
}

.pacote-info {
    padding: 25px;
}

.pacote-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pacote-info p {
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.pacote-features {
    list-style: none;
    margin-bottom: 20px;
}

.pacote-features li {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pacote-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.pacote-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pacote-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pacote-duration {
    color: var(--tertiary-color);
    font-size: 0.9rem;
}

/* Sobre Nós */
.sobre {
    padding: 80px 0;
    background-color: var(--light-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.sobre-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.sobre-buttons {
    margin: 30px 0;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.sobre-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.sobre-feature-icon {
    background-color: rgba(16, 65, 153, 0.1);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sobre-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sobre-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Formulário de Orçamento */
.orcamento {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.orcamento-form {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-check-group {
    margin-bottom: 20px;
}

.form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.form-check-input {
    margin-right: 10px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    margin-top: 20px;
}

/* Animações e Efeitos */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column p {
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whatsapp-icon {
    background-color: #25D366;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--secondary-color);
}

.footer-contact-item p {
    margin-bottom: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

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

/* Página Nos Conheça */
.nos-conheca-hero {
    padding: 120px 0 80px;
    background-color: var(--bg-light);
}

.nos-conheca-principal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.nos-conheca-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nos-conheca-img img {
    width: 100%;
    height: auto;
    display: block;
}

.nos-conheca-texto h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.nos-conheca-texto p {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.galeria-titulo {
    text-align: center;
    margin-bottom: 50px;
}

.galeria-titulo h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.galeria-titulo p {
    font-size: 1.1rem;
    color: var(--tertiary-color);
    max-width: 800px;
    margin: 0 auto;
}

.galeria-viagens {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.galeria-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.cta-contato {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-contato h3 {
    font-size: 2rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.cta-contato p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-logo img {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .sobre-content,
    .nos-conheca-principal {
        grid-template-columns: 1fr;
    }
    
    .sobre-img,
    .nos-conheca-img {
        order: -1;
        margin-bottom: 30px;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        flex-wrap: wrap;
    }
    
    .galeria-viagens {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .destinos-grid,
    .pacotes-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-contato {
        padding: 30px;
    }
    
    .cta-contato h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-logo img {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .promo-bar {
        flex-direction: column;
    }
    
    .promo-text {
        margin: 5px 0;
    }
    
    .orcamento-form {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .galeria-viagens {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
