:root {
    --primary-orange: #FF6B35;
    --primary-teal: #4ECDC4;
    --dark-blue: #2D4059;
    --light-orange: #FFA577;
    --light-teal: #7FE9E3;
    --accent-yellow: #F7B731;
    --text-dark: #1A1A2E;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.navbar-brand img {
    height: 45px;
    width: 45px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: var(--white) !important;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
}

.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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.offcanvas-title {
    color: var(--white);
    font-weight: 700;
}

.offcanvas .nav-link {
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    margin: 0;
}

.offcanvas .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.btn-close {
    filter: brightness(0) invert(1);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFE5DD 0%, #D4F1F4 100%);
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    color: var(--dark-blue);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
    color: var(--text-light);
    font-size: 1.2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-img {
    animation: floatAnimation 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

.btn-outline-hero {
    border: 3px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.content-section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.alt-bg {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.badge-category {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1) rotate(2deg);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.4);
}

.blog-content {
    background: var(--white);
}

.tag-pill {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    color: var(--primary-orange);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.read-more-link {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more-link:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.water-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(78, 205, 196, 0.2);
    transition: all 0.5s ease;
    height: 100%;
}

.water-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
}

.water-card-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.water-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.water-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.8) 0%, rgba(255, 107, 53, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.water-overlay i {
    color: var(--white);
}

.water-card:hover .water-overlay {
    opacity: 1;
}

.water-card:hover .water-card-img img {
    transform: scale(1.2);
}

.location-tag {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.water-card:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.adventure-list {
    padding-left: 0;
}

.adventure-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.adventure-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.adventure-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.adventure-item:hover .adventure-icon {
    transform: rotate(10deg) scale(1.1);
}

.adventure-gallery img {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(45, 64, 89, 0.3);
}

.tips-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tips-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tips-card:hover::before {
    transform: scaleX(1);
}

.tips-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.tips-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.tips-icon-wrapper i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-card:hover .tips-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
}

.tips-card:hover .tips-icon-wrapper i {
    -webkit-text-fill-color: var(--white);
}

.special-tip-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.special-tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.contact-info-wrapper,
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.contact-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
    display: inline-block;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    border: 2px solid #E9ECEF;
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.2);
}

.form-label {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.footer {
    background: var(--dark-blue);
    color: var(--white);
    position: relative;
    margin-top: 100px;
}

.footer-main {
    position: relative;
    z-index: 2;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-teal);
    transform: translateX(5px);
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 0.8rem 1.2rem;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    border: none;
    color: var(--white);
    border-radius: 0 50px 50px 0;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: scale(1.05);
    color: var(--white);
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--dark-blue);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-teal);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1A2332 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-link {
    color: var(--primary-teal);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--light-teal);
}

.btn-cookie {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    border: none;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-cookie:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.privacy-content {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.privacy-header {
    padding-top: 2rem;
}

.privacy-section {
    line-height: 1.9;
}

#contato {
    width: 100%;
    overflow: hidden;
}

.privacy-section h2 {
    color: var(--dark-blue);
    margin-top: 2rem;
}

.privacy-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.privacy-section strong {
    color: var(--dark-blue);
    font-weight: 600;
}

[data-aos="fade-up"],
[data-aos="fade-right"],
[data-aos="fade-left"],
[data-aos="zoom-in"],
[data-aos="flip-left"] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="flip-left"].aos-animate {
    opacity: 1;
    transform: rotateY(0);
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .adventure-item {
        flex-direction: column;
        text-align: center;
    }
    
    .adventure-icon {
        margin: 0 auto;
    }

    .hero-section {
        padding-top: 130px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-hero,
    .btn-outline-hero {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cookie-banner .row {
        flex-direction: column;
    }
    
    .cookie-banner .col-lg-3 {
        text-align: center;
        margin-top: 1rem;
    }
}
