/* Política de Privacidade Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0086FF 0%, #0070d9 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/gradient_home.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.hero-decoration {
    position: absolute;
    border-radius: 24px;
}

.hero-decoration-1 {
    width: 220px;
    height: 140px;
    background: #D9D9D94D;
    bottom: -8px;
    left: 20px;
    rotate: 90deg;
}

/* Retângulo opaco superior direito */
.hero-decoration-3 {
    width: 200px;
    height: 120px;
    background: #D9D9D94D;
    top: 150px;
    right: -65px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
}

/* Privacy Policy Content Section */
.privacy-content {
    background-color: #fff;
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.intro-section {
    margin-bottom: 3rem;
}

.section {
    margin-bottom: 3rem;
}

.section-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #626262;
    font-size: 1.5rem;
}

.privacy-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

.privacy-text strong {
    color: #333;
    font-weight: 600;
}

.privacy-text a {
    color: #0086FF;
    text-decoration: none;
}

.privacy-text a:hover {
    color: #0070d9;
    text-decoration: underline;
}

/* Navbar fixes for privacy policy page */
.navbar {
    background-color: white !important;
    backdrop-filter: none !important;
}

.navbar .nav-link {
    color: #333 !important;
}

.navbar .nav-link:hover {
    color: #0086FF !important;
}

.navbar .nav-link.active {
    color: #333 !important;
    font-weight: 500 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-content {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .privacy-text {
        font-size: 0.95rem;
    }
    
    .privacy-text ul {
        padding-left: 1rem;
    }
}