/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #F3701A;    /* Laranja - Letra "B" e "W" */
    --secondary-color: #00B9F1;  /* Azul Claro - Letra "L" e "I" */
    --accent-color: #FFF200;     /* Amarelo - Letra "L" (2ª de "Billy") */
    --pink-color: #EC008C;       /* Rosa - Letra "Y" e "L" */
    --green-color: #39B54A;      /* Verde - Letra "Y" (em "Willy") */
    --cyan-color: #00A99D;       /* Ciano/Verde Água - Letra "W" */
    --red-color: #ED1C24;        /* Vermelho - Letra "I" (1ª do "Billy") */
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #39B54A;
    --warning-color: #FFF200;
    --danger-color: #ED1C24;
}

p{
    font-size: 18px;
    text-align: justify;
}

/* ===== FONTES INFANTIS ===== */
.brand-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.brand-subtitle {
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
}

.cursive-title {
    font-family: 'Chewy', cursive;
    font-weight: 400;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cursive-text {
    font-family: 'Chewy', cursive;
    color: var(--dark-color);
}

.fun-text {
    font-family: 'Comic Neue', cursive;
    font-weight: 400;
    text-align: justify;
}

/* ===== LOGO ===== */
.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

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

.navbar.scrolled .logo-img {
    filter: brightness(1.1);
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* ===== ESTILOS GERAIS ===== */
body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    color: var(--dark-color);
    background: #fff;
}

/* ===== HEADER BOOTSTRAP ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding:  0;
}

.navbar.scrolled {

}

.navbar.scrolled .navbar-nav .nav-link {
   
}

.navbar.scrolled .navbar-nav .nav-link:hover {
   
}

.navbar.scrolled .navbar-nav .nav-link::after {
  
}

.navbar.scrolled .navbar-toggler {
   
}

.navbar.scrolled .navbar-toggler:hover {
  
}

.navbar-nav .nav-link {
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-color) !important;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 25px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(45deg, rgba(243, 112, 26, 0.1), rgba(236, 0, 140, 0.1));
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--pink-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(243, 112, 26, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 112, 26, 0.25);
}

/* ===== MENU LATERAL MOBILE ===== */
.offcanvas {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid var(--primary-color);
}

.offcanvas-header {
    background: #fff !important;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-header .logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.offcanvas-title {
    font-family: 'Fredoka One', cursive;
    color: white !important;
    margin: 0;
}

.btn-close {
    filter: none !important;
    background: none !important;
    color: #fff !important;
    opacity: 1 !important;
    border: none !important;
    font-size: 2rem;
}
.offcanvas .btn-close {
    color: #fff !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.offcanvas .btn-close {
    color: #ED1C24 !important;
}

.mobile-nav-link {
    font-family: 'Comic Neue', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color) !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-nav-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(45deg, rgba(243, 112, 26, 0.1), rgba(236, 0, 140, 0.1));
    padding-left: 1rem !important;
    transform: translateX(10px);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.mobile-contact {
    padding: 1.5rem;
    background: rgba(243, 112, 26, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.mobile-contact h6 {
    font-family: 'Chewy', cursive;
    color: var(--primary-color);
}

.mobile-contact a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.mobile-contact a:hover {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    color: white;
    padding: 0px 0 0 0; /* Removendo padding bottom para o SVG */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

/* Posicionamento do SVG de onda */
.hero-section svg,
.hero-wave {
    position: absolute;
    bottom: -5px; /* Para não haver gap */
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}


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

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Ajustes para o carousel */
.hero-carousel {
    position: relative;
    z-index: 1;
}

.carousel-item {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.carousel-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Controles do carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
    bottom: 30px;
    z-index: 9999;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 9999;
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(243, 112, 26, 0.6);
}

/* ===== BOTÕES ===== */
.btn, .btn-primary, .btn-secondary {
    background: #25D366 !important;
    color: #fff !important;
    border: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn:hover, .btn-primary:hover, .btn-secondary:hover {
    background: #1ebe5d !important;
    color: #fff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn-success {
    background: var(--green-color) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-success:hover {
    background: #2ea94b !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px) scale(1.05);
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--pink-color), var(--accent-color));
}

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

.card-img-top {
    height: 300px;
    object-fit: cover;
}

/* ===== SEÇÕES ===== */
.section-title {
    text-align: center;
    margin-bottom: 0rem;
}

.section-title h2 {
    font-size: 3rem;
  
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title .cursive-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== ATRAÇÕES ===== */
.attraction-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--green-color));
    z-index: 2;
}

.attraction-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.attraction-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.attraction-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--pink-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.attraction-card:hover .attraction-icon {
    transform: scale(1.2) rotate(5deg);
}

.attraction-card h5 {
    font-family: 'Chewy', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.attraction-card p {
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== FORMULÁRIOS ===== */
.form-control {
    border-radius: 15px;
    border: 3px solid #e9ecef;
    padding: 15px 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.3rem rgba(243, 112, 26, 0.25);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-section {    
    background: url('../img/fundo-rodape.jpeg');
    position: relative;
    color: white;
    padding: 3rem 0 2rem 0;
    border-top: 3px solid var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.233);
    z-index: 1;
}

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

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.footer-brand:hover .footer-logo {
    transform: scale(1.1);
}

.footer-brand-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.footer-brand-subtitle {
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-title {
    font-family: 'Chewy', cursive;
    font-size: 1.3rem;
    color: var(--white);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Comic Neue', cursive;
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.contact-item span,
.contact-item small {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), var(--pink-color));
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 112, 26, 0.3);
}

.social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(243, 112, 26, 0.5);
}

.footer-divider {
    border: none;
    height: 2px;
    background: none;
    margin: 3rem 0 2rem 0;
    opacity: 0.8;
}

.footer-copyright {
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media(min-width:786px){
    .footer-copyright{
        text-align: center;
    }
}
/* Responsividade do footer */
@media (max-width: 768px) {
   
    .footer-section {
        padding: 2rem 0 1rem 0;
        background-position: initial;
    }
    
    .footer-brand-text {
        font-size: 1.4rem;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.bounce {
    animation: bounce 2s infinite;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-section {

        min-height: 50vh;
    }
    
    .hero-section svg {
        height: 90px; /* Altura fixa para mobile */
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .carousel-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-item {
        min-height: 50vh;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .attraction-card {
        padding: 2rem;
        min-height: 250px;
    }
    
    .attraction-card h5 {
        font-size: 1.3rem;
    }
    
    .attraction-card p {
        font-size: 0.9rem;
    }
    
    .attraction-icon {
        font-size: 3rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        z-index: 9999;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 3px;
    }
}

/* ===== UTILITÁRIOS ===== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* ===== LOADING ===== */
.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); }
}

/* ===== ELEMENTOS DECORATIVOS ===== */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%) !important;
}

/* ===== EFEITOS ESPECIAIS ===== */
.rainbow-text {
    background: linear-gradient(45deg, var(--primary-color), var(--pink-color), var(--accent-color), var(--secondary-color), var(--green-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
} 

/* Animações para o carousel */
.carousel-item.active .carousel-content h2 {
    animation: slideInUp 0.8s ease-out;
}

.carousel-item.active .carousel-content p {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.carousel-item.active .carousel-content .btn {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de fade para transições do carousel */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
} 

/* ===== SEÇÃO QUEM SOMOS ===== */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Remover completamente o efeito de hover da imagem do about */
.about-image-container:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.about-image-container img {
    transition: none !important;
}

/* Responsividade para a seção about */
@media (max-width: 768px) {
    .about-image-container img {
        height: 300px;
    }
    
    .about-overlay {
        padding: 1.5rem;
        transform: translateY(0); /* Sempre visível no mobile */
    }
    
    .about-image-container:hover .about-overlay {
        transform: translateY(0);
    }
} 

/* ===== FUNDOS COLORIDOS DAS SEÇÕES ===== */
.bg-cyan {
    background-color: #00B9F1 !important;
    color: white;
}

.bg-green {
    background-color: #39B54A !important;
    color: white;
}

.bg-pink {
    background-color: #EC008C !important;
    color: white;
}

/* Ajustes para textos em fundos coloridos */
.bg-cyan .section-title h2,
.bg-green .section-title h2,
.bg-pink .section-title h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-cyan .section-title .cursive-subtitle,
.bg-green .section-title .cursive-subtitle,
.bg-pink .section-title .cursive-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== SVGs DE ONDA DAS SEÇÕES ===== */
section {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    z-index: 1;
}
.section-wave {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}
.section-wave-top {
    top: -80px;
    height: 120px;
}
.section-wave-bottom {
    bottom: -80px;
    height: 120px;
}

/* Ondas coloridas para cada seção */
.wave-orange {
    fill: var(--primary-color);
}
.wave-blue {
    fill: var(--secondary-color);
}
.wave-green {
    fill: var(--green-color);
}
.wave-pink {
    fill: var(--pink-color);
}

.wave-top, .wave-bottom {
  width: 100vw;
  min-width: 100vw;
  line-height: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.wave-top svg, .wave-bottom svg {
  display: block;
  width: 100vw;
  min-width: 100vw;
  height: 100px;
  max-width: 100vw;
}
@media (max-width: 768px) {
  .wave-top svg, .wave-bottom svg {
    height: 60px;
  }
}

.py-5.bg-light .fun-text,
.py-5.bg-light .lead,
.py-5.bg-light p {
    text-align: justify;
}

.py-5.bg-light .d-flex.align-items-center {
    align-items: center !important;
}

.py-5.bg-light .d-flex.align-items-center i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.3rem;
    margin-right: 0;
} 

/* Ícones animados para seções */
.animated-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.animated-icon {
    width: 40px;
    height: 40px;
    animation: floatIcon 2.5s ease-in-out infinite;
}
.animated-icon:nth-child(2) {
    animation-delay: 0.8s;
}
.animated-icon:nth-child(3) {
    animation-delay: 1.6s;
}
@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
} 

/* Borda rasgada entre seções */
.section-ripped {
    width: 100%;
    line-height: 0;
    position: relative;
    margin-bottom: -2px;
    z-index: 2;
}
.section-ripped svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Confetes animados */
.confetti-wrapper {
    position: relative;
    height: 40px;
    width: 100%;
    overflow: visible;
    margin-bottom: -20px;
    z-index: 3;
}
.confetti {
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F3701A, #00B9F1, #39B54A, #EC008C);
    animation: confetti-fall 2.5s infinite linear;
    opacity: 0.85;
}
@keyframes confetti-fall {
    0% { transform: translateY(0) scale(1) rotate(0deg);}
    80% { transform: translateY(30px) scale(1.2) rotate(180deg);}
    100% { transform: translateY(40px) scale(0.8) rotate(360deg);}
} 

.owlBanner-wave {
    z-index: 2;
    pointer-events: none;
    transform: rotate(180deg);
    bottom: -1px;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}

.owlBanner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}

.owlBanner-wave2 {
    z-index: 2;
    pointer-events: none;
    transform: rotate(360deg);
    top: -1px;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.img-about {
    width: 60%;
     margin: 0 auto;
    display: block;
     margin-top: 40px; 

}


.img-about2{
    
    width: 70%;
    margin: 15px auto;
  

}

.btn-success {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px;
    
    }

.offcanvas {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
body.offcanvas-open {
    overflow: hidden !important;
    height: 100vh !important;
}

.offcanvas-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .offcanvas {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        width: 100vw !important;
    }

    .btn-mobile{
        margin: 15px auto;
        display: block;
        width: 200px;
        
    

    }
}