@charset "UTF-8";

/* ========== MODERN PRIVACY PAGE ========== */


/* Base styles (navbar, footer, html, body) are controlled by geral.css */


/* ========== HERO SECTION ========== */

.privacy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/background.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    border: none;
    padding-bottom: 0;
    text-shadow: none;
}

.hero-content h1::after {
    display: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}


/* ========== CONTENT CONTAINER ========== */

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-wrapper {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.1);
}


/* ========== SECTIONS ========== */

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.privacy-section h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    padding-bottom: 0;
}

.privacy-section h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.privacy-section h3::after {
    display: none;
}

.privacy-section p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section a,
.content-wrapper a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-section a:hover,
.content-wrapper a:hover {
    color: #ff8c42;
    text-decoration: underline;
}


/* ========== BUTTONS ========== */

.btn-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-container .btn i {
    font-size: 1.2rem;
}

.btn-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* ========== HIGHLIGHTS ========== */

.highlight-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box p {
    margin: 0;
    color: #ffffff;
}


/* ========== FOOTER ========== */


/* Footer and sponsor styles are in geral.css for consistency across all pages */


/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .content-wrapper {
        padding: 30px 25px;
        border-radius: 20px;
    }
    .privacy-section h3 {
        font-size: 1.5rem;
    }
    .privacy-section p {
        font-size: 1rem;
    }
    .btn-container .btn {
        font-size: 1rem;
        padding: 12px 28px;
    }
    .privacy-hero {
        padding: 100px 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .content-wrapper {
        padding: 25px 20px;
    }
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    .privacy-section h3::before {
        width: 3px;
        height: 25px;
    }
    .btn-container .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
    }
    .logo {
        width: 100px;
    }
}