:root {
    --navbar-height: 72px;
    --amarelo-principal: #FFD700;
    /* Amarelo mais intenso */
    --amarelo-escuro: #FFC800;
    /* Para hover */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    padding-top: var(--navbar-height);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: var(--primary-font);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #FFE83C !important;
    /* Forçar cor amarela */
    height: var(--navbar-height);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

.navbar-brand {
    position: relative;
    z-index: 5;
}

.navbar-brand img {
    transition: transform var(--transition-speed) ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-dark .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
}

.navbar-dark .navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link.text-dark {
    color: #000 !important;
    /* Garantir texto preto */
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    transition: all var(--transition-speed) ease;
}

.nav-link.text-dark::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--amarelo-escuro);
    transition: all var(--transition-speed) ease;
}

.nav-link.text-dark:hover::after {
    width: 80%;
    left: 10%;
}

.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 232, 60, 0.2);
    transform: translateX(5px);
}

.wrapper {
    flex: 1 0 auto;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--amarelo-principal), var(--amarelo-escuro));
}

.footer-logo {
    height: 40px;
    width: auto;
    transition: all var(--transition-speed) ease;
    filter: brightness(0.9);
}

.footer-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    transition: all var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--amarelo-principal);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: var(--amarelo-principal);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background-color: var(--amarelo-principal);
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 72px;
        /* Altura da navbar */
        right: -300px;
        /* Esconde inicialmente */
        width: 300px;
        height: calc(100vh - 72px) !important;
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        padding: 20px;
        overflow-y: auto;
        z-index: 1000;
        border-radius: 20px 0 0 0;
    }

    .navbar-collapse.show {
        right: 0;
        /* Mostra o menu */
    }

    /* Backdrop do menu */
    .navbar-backdrop {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .navbar-backdrop.active {
        display: block;
    }

    /* Ajustes nos itens */
    .navbar-nav {
        flex-direction: column !important;
    }

    .nav-item {
        margin: 10px 0;
    }

    .dropdown-menu {
        display: none !important;
        /* Esconder inicialmente */
        position: static !important;
        border: none;
        background: #f8f9fa;
        margin-left: 15px;
        box-shadow: none;
        padding-top: 0;
        border-radius: 10px;
        animation: none;
    }

    .dropdown-menu.show {
        display: block !important;
        /* Mostrar quando ativo */
        animation: slideDown 0.3s ease;
    }

    .dropdown-toggle::after {
        margin-left: 10px;
        float: right;
    }

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

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
}

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

@media (max-width: 576px) {
    .main-card-section {
        padding: 4rem 0 2rem;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .carousel-inner {
        min-height: 250px;
    }

    .navbar-brand img {
        height: 50px !important;
    }
}

@media (max-width: 768px) {
    .main-card-section {
        padding: 4rem 0 2rem;
    }

    .carrossel-container {
        height: 300px;
    }
}

/* CSS ADICIONAL PARA A PÁGINA GO CABRAL */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffe96f 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: var(--secondary-font);
}

.text-highlight {
    color: #000000;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    position: relative;
    z-index: 20 !important;
    /* Máxima prioridade */
    pointer-events: auto !important;
}

.btn-primary {
    background-color: var(--amarelo-principal);
    border: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: var(--amarelo-escuro);
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--amarelo-principal);
    color: #333;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary:hover {
    background-color: var(--amarelo-principal);
    border-color: var(--amarelo-principal);
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.floating-card {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 220px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    transform: rotate(5deg);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(5deg);
    }
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h6 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #333;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFE83C;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFE83C, #FFC800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.advantage-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.advantage-card h5 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #FFE83C;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFE83C, #FFC800);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-content h5 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tips Section */
.tips-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tip-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.tip-card h6 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 232, 60, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    margin: 0.5rem;
    z-index: 20 !important;
    /* Máxima prioridade */
    pointer-events: auto !important;
    /* Força elementos a serem clicáveis */
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto 0;
        animation: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .advantage-card,
    .service-item {
        margin-bottom: 1.5rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 1rem;
    }

    .floating-card {
        max-width: 100%;
        margin: 1rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .advantages-section,
    .services-section,
    .tips-section,
    .cta-section {
        padding: 3rem 0;
    }

    .advantage-card,
    .service-item,
    .tip-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }
}

/* Animações personalizadas */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Efeitos hover adicionais */
.hero-buttons .btn:hover {
    text-decoration: none;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.service-item:hover .service-icon i {
    color: white;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading animation para elementos AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Cores customizadas para ícones */
.text-primary {
    color: #FF6B35 !important;
}

.bg-primary {
    background-color: #FF6B35 !important;
}

/* Estilo para o header de destinos */
.bonito-header {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--amarelo-principal);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.bonito-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bonito-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="70" cy="50" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(0,0,0,0.02)"/></svg>');
    opacity: 0.5;
}

.has-gocabral {
    position: relative;
}

.has-gocabral .text-amarelo {
    position: relative;
    display: inline-block;
    transition: all var(--transition-speed) ease;
}

.has-gocabral:hover .text-amarelo {
    transform: translateY(-2px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Botões de alternância de destino */
.btn-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline-amarelo {
    border: none;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    transition: all var(--transition-speed) ease;
}

.btn-outline-amarelo:hover,
.btn-outline-amarelo.active {
    background-color: var(--amarelo-principal);
    color: #333;
    transform: translateY(-2px);
}

/* Efeito de carregamento para cards */
.card-destino {
    transition: all var(--transition-speed) ease;
}

.card-destino.active {
    animation: fadeInUp 0.5s ease forwards;
}

/* Efeito de hover para botões de telefone */
.phone-box {
    transition: all var(--transition-speed) ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.phone-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.phone-box i {
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilo para botão de voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--amarelo-principal);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--amarelo-escuro);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}