/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-brand .logo-text {
    color: #28a745 !important;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.8), 0 0 40px rgba(40, 167, 69, 0.4);
    animation: logoGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Força a cor verde mesmo com herança */
.navbar-brand .logo-text,
.navbar-brand:hover .logo-text,
.navbar-brand:focus .logo-text {
    color: #28a745 !important;
}

/* Regra mais específica para sobrescrever Bootstrap */
.navbar.navbar-expand-lg .navbar-brand .logo-text {
    color: #28a745 !important;
    font-weight: 800 !important;
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 20px rgba(40, 167, 69, 0.8), 0 0 40px rgba(40, 167, 69, 0.4);
        color: #28a745;
    }
    100% {
        text-shadow: 0 0 30px rgba(40, 167, 69, 1), 0 0 50px rgba(32, 201, 151, 0.6), 0 0 70px rgba(40, 167, 69, 0.3);
        color: #20c997;
    }
}

.navbar-brand:hover .logo-text {
    transform: scale(1.05);
    animation-duration: 0.5s;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-price {
    margin-bottom: 2rem;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

.hero-price-alt {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-alt-label {
    display: block;
    font-size: 1rem;
    color: white;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.price-alt-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.price-alt-desc {
    display: block;
    font-size: 0.9rem;
    color: white;
    opacity: 0.8;
}

.hero-delivery-text {
    text-align: center;
    margin-top: 1rem;
}

.hero-delivery-text p {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}

.hero-delivery-text small {
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    margin-top: 0.5rem;
    color: white;
    opacity: 0.75;
}

.hero-delivery-text small i {
    margin-right: 0.3rem;
    color: #28a745;
}

.hero-location {
    text-align: center;
    margin-bottom: 2rem;
}

.location-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Cota de Compras */
.cota-alert {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffc107;
}

.cota-alert i {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.cota-alert h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cota-alert p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cota-alert strong {
    color: #dc3545;
    font-weight: 700;
}

.cota-alert small {
    color: #666;
    font-size: 0.9rem;
}

.cota-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 3px solid #ffc107;
}

.cota-info h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cota-info h5 i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.cota-info p {
    color: #dc3545;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

/* Regras da Receita Federal */
.regra-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.regra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.regra-permitido {
    border-left: 5px solid #28a745;
}

.regra-proibido {
    border-left: 5px solid #dc3545;
}

.regra-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.regra-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.regra-permitido .regra-header i {
    color: #28a745;
}

.regra-proibido .regra-header i {
    color: #dc3545;
}

.regra-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.regra-content {
    text-align: left;
}

.regra-item {
    margin-bottom: 1.5rem;
}

.regra-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.regra-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regra-item li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.regra-permitido .regra-item li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.regra-proibido .regra-item li:before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Limites e Valores */
.limite-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.limite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.limite-icon {
    margin-bottom: 1.5rem;
}

.limite-icon i {
    font-size: 3rem;
    color: #667eea;
}

.limite-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.limite-valor {
    margin-bottom: 1rem;
}

.valor-principal {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.valor-descricao {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.limite-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.hero-buttons {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #333;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px dashed #007bff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #007bff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s;
}

.hero-img-placeholder:hover::before {
    left: 100%;
}

.hero-img-placeholder:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.hero-img-placeholder i {
    font-size: 4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-img-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

/* Destinos Cards */
.destino-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.destino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destino-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destino-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #ffc107;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.destino-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s;
}

.destino-img-placeholder:hover::before {
    left: 100%;
}

.destino-img-placeholder:hover {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.15);
}

.destino-img-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.destino-img-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.destino-content {
    padding: 1.5rem;
}

.destino-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.destino-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.destino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.destino-features span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Horários Cards */
.horario-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.horario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.horario-header {
    text-align: center;
    margin-bottom: 2rem;
}

.horario-header i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.horario-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.horario-content {
    text-align: center;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-label {
    font-weight: 500;
    color: #666;
}

.horario-time {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Veículos Cards */
.veiculo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.veiculo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.veiculo-icon {
    margin-bottom: 1.5rem;
}

.veiculo-icon i {
    font-size: 4rem;
    color: #667eea;
}

.veiculo-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.veiculo-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.veiculo-features {
    list-style: none;
    text-align: left;
}

.veiculo-features li {
    padding: 0.5rem 0;
    color: #666;
}

.veiculo-features li i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* Galeria */
.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.galeria-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #28a745;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #28a745;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.galeria-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s;
}

.galeria-placeholder:hover::before {
    left: 100%;
}

.galeria-placeholder:hover {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.15);
}

.galeria-placeholder i {
    font-size: 2.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.galeria-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Reserva Card */
.reserva-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reserva-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.reserva-content h3 i {
    color: #25d366;
    margin-right: 0.5rem;
}

.reserva-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.whatsapp-info {
    margin-bottom: 2rem;
}

.btn-success {
    background: #25d366;
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.reserva-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.reserva-details h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.reserva-details ul {
    list-style: none;
}

.reserva-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.reserva-details li:last-child {
    border-bottom: none;
}

/* Contato Cards */
.contato-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contato-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contato-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contato-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contato-item p {
    color: #666;
    margin: 0;
}

.contato-link {
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.contato-link:hover {
    color: #667eea;
    text-decoration: none;
}

.contato-link p {
    margin: 0;
    transition: all 0.3s ease;
}

.contato-link:hover p {
    color: #667eea;
}

.horario-atendimento {
    margin-bottom: 2rem;
}

.horario-atendimento .horario-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.horario-atendimento .horario-item:last-child {
    border-bottom: none;
}

.social-media h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Informações Importantes */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.info-icon {
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 3rem;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    font-size: 1rem;
}

.info-card strong {
    color: #667eea;
    font-weight: 600;
}

/* Opções de Viagem */
.opcao-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.opcao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.opcao-completa {
    border-color: #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.opcao-ida {
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.opcao-header {
    text-align: center;
    margin-bottom: 2rem;
}

.opcao-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opcao-completa .opcao-header i {
    color: #667eea;
}

.opcao-ida .opcao-header i {
    color: #28a745;
}

.opcao-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.opcao-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
}

.opcao-ida .opcao-price {
    background: rgba(40, 167, 69, 0.1);
}

.opcao-valor {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.opcao-ida .opcao-valor {
    color: #28a745;
}

.opcao-periodo {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.opcao-descricao p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.opcao-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opcao-beneficios li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.opcao-beneficios li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contato-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Botão Área Restrita */
.navbar .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    transition: all 0.3s ease;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.navbar .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

.navbar .btn-outline-light i {
    margin-right: 5px;
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .navbar .btn-outline-light {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

/* Botões Flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-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: left 0.5s;
}

.floating-btn:hover::before {
    left: 100%;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: white;
}

.share-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.share-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
}

/* Responsividade para botões flutuantes */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 70px;
        right: 10px;
        gap: 6px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* LOGO OLIVEIRA TUR - BOTÃO ESTILIZADO */
.logo-button {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(40, 167, 69, 0.3) !important;
    border-radius: 15px !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.logo-button::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: left 0.5s;
}

.logo-button:hover::before {
    left: 100%;
}

.logo-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(40, 167, 69, 0.6) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.logo-icon {
    color: #28a745 !important;
    font-size: 1.4rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.logo-text {
    color: #28a745 !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.logo-button:hover .logo-icon {
    transform: rotate(5deg) scale(1.05) !important;
    color: #20c997 !important;
}

.logo-button:hover .logo-text {
    color: #20c997 !important;
    text-shadow: 0 2px 8px rgba(32, 201, 151, 0.3) !important;
}

/* Removida animação de pulsação para design mais limpo */

/* Responsividade para o botão da logo */
@media (max-width: 768px) {
    .logo-button {
        padding: 8px 15px !important;
    }
    
    .logo-text {
        font-size: 1.1rem !important;
    }
    
    .logo-icon {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .logo-button {
        padding: 6px 12px !important;
    }
    
    .logo-text {
        font-size: 1rem !important;
    }
    
    .logo-icon {
        font-size: 1.1rem !important;
    }
    
    .logo-content {
        gap: 8px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    margin: 0 0 10px 0;
    color: #ffd700;
    font-size: 1.2rem;
}

.cookie-consent-text p {
    margin: 0;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-consent-text a {
    color: #667eea;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #5a6fd8;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    white-space: nowrap;
    min-width: 120px;
}

/* Cookie Modal */
.cookie-category {
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category .form-check {
    margin-bottom: 8px;
}

.cookie-category .form-check-label {
    font-weight: 500;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
}

/* Privacy Modal */
#privacyModal .modal-body h6 {
    color: #667eea;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

#privacyModal .modal-body h6:first-child {
    margin-top: 0;
}

#privacyModal .modal-body ul {
    padding-left: 20px;
}

#privacyModal .modal-body li {
    margin-bottom: 5px;
}

/* Responsividade Cookies */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-buttons .btn {
        min-width: 100px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        min-width: auto;
        width: 100%;
    }
}

/* Painel de Informações da Viagem */
.info-viagem-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 3px solid #ffd700;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.info-viagem-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.info-viagem-header i {
    font-size: 1.8rem;
    color: #dc3545;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.info-viagem-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.info-viagem-content {
    padding: 1.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    overflow-y: auto;
    flex: 1;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.info-viagem-content::-webkit-scrollbar {
    width: 8px;
}

.info-viagem-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.info-viagem-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.info-viagem-content strong {
    color: #667eea;
}

.info-viagem-footer {
    background: #f8f9fa;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
}

.info-viagem-footer small {
    color: #666;
    font-size: 0.85rem;
}

.info-viagem-footer i {
    color: #667eea;
    margin-right: 5px;
}

/* Responsividade do Painel de Informações */
@media (max-width: 992px) {
    .info-viagem-card {
        max-height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .info-viagem-card {
        max-height: 300px;
    }
    
    .info-viagem-header {
        padding: 1rem;
    }
    
    .info-viagem-header h3 {
        font-size: 1.2rem;
    }
    
    .info-viagem-content {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .info-viagem-card {
        max-height: 280px;
        border-radius: 15px;
    }
    
    .info-viagem-header i {
        font-size: 1.4rem;
    }
    
    .info-viagem-header h3 {
        font-size: 1.1rem;
    }
} 