@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: local("Montserrat"),
         url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: local("Montserrat"),
         url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff");
}

/* Variáveis */
:root {
    --primary-color: #046A38; /* Verde Portugal */
    --secondary-color: #DA291C; /* Vermelho Portugal */
    --accent-color: #FEDF00; /* Amarelo Brasil */
    --dark-color: #0A1E2C;
    --light-color: #F5F5F5;
    --text-color: #333333;
    --white: #FFFFFF;
    --gray: #6C757D;
    --font-fam: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fam);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-fam);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn--primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* Header */
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* background: var(--white); */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header__top-bar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 8px 0;
    color: var(--white);
    font-size: 0.9rem;
}

.header__top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.alert-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    animation: pulse-alert 2s infinite;
}

.alert-icon {
    color: var(--accent-color);
}

.alert-link {
    color: var(--white);
    font-weight: 600;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.alert-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.header__utils {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.ticker-label {
    color: var(--white);
}

.ticker-time {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    font-feature-settings: "tnum";
}

.utils-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher,
.currency-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.language-switcher:hover,
.currency-switcher:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown,
.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 10px 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.language-switcher:hover .lang-dropdown,
.currency-switcher:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-option,
.currency-option {
    display: block;
    padding: 8px 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.lang-option:hover,
.currency-option:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.header__main {
    padding: 15px 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    position: relative;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04;
}

.logo__img {
    height: 50px;
    width: auto;
}

.logo-flags {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-flags img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    color: var(--dark-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
    background: rgba(4, 106, 56, 0.1);
}

.nav-icon {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.btn-nav {
    background: var(--accent-color);
    color: var(--dark-color) !important;
    padding: 12px 20px !important;
}

.btn-nav:hover {
    background: #f0d000 !important;
}

.mega-menu-content {
    position: absolute;
    right: 0;
    width: 600px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    margin-top: 10px;
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
}

.mega-menu-column h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-color);
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 0;
}

.mega-menu-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mega-menu-column img {
    width: 20px;
    height: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn--small {
    padding: 10px 15px;
    font-size: 0.9rem;
}

.search-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.header-search.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--light-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.close-search {
    display: none;
    right: 45px !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Animations */
@keyframes pulse-alert {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-menu-content {
        width: 500px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header__top-content {
        justify-content: center;
    }
    
    .alert-banner {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    
    .header__utils {
        order: 1;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 90%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .nav__item {
        width: 100%;
    }
    
    .nav__link {
        padding: 15px;
        width: 100%;
    }
    
    .mega-menu-content {
        position: static;
        width: 100%;
        display: none;
        margin-top: 10px;
        box-shadow: none;
        padding: 0 0 0 20px;
    }
    
    .mega-menu:hover .mega-menu-content {
        display: block;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .header-search {
        position: fixed;
        top: 0;
        left: 0;
        padding: 20px;
        background: var(--white);
        z-index: 1002;
    }
    
    .search-form {
        max-width: 100%;
    }
    
    .close-search {
        display: block;
    }
    .hero {
        height: auto;
    }
}

@media (max-width: 576px) {
    .logo-flags {
        display: none;
    }
    .header__top-bar {
        display: none;
    }
    .header__utils {
        flex-direction: column;
        gap: 10px;
    }
    
    .utils-group {
        gap: 10px;
    }
    
    .alert-banner span:last-child {
        display: none;
    }

}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding-top: 100px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero__bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(60px);
}

.bg-circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float 15s infinite ease-in-out;
}

.bg-circle--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 12s infinite ease-in-out 2s;
}

.bg-circle--3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 30%;
    animation: float 10s infinite ease-in-out 4s;
}

.hero__floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-ball {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    animation: float-rotate 15s infinite linear;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.floating-player {
    position: absolute;
    height: 70vh;
    max-height: 600px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.floating-player--left {
    left: 5%;
    bottom: 0;
    animation: float-vertical 8s infinite ease-in-out;
}

.floating-player--right {
    right: 5%;
    bottom: 0;
    animation: float-vertical 7s infinite ease-in-out 1s;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero__logo img {
    max-width: 300px;
    height: auto;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

.hero__date {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.1s forwards;
    opacity: 0;
}

.date-badge,
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.date-badge:hover,
.location-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.date-badge i,
.location-badge i {
    color: var(--accent-color);
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.3s forwards;
    opacity: 0;
}

.btn--pulse {
    position: relative;
    overflow: hidden;
}

.btn--pulse::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    opacity: 0;
}

.btn--pulse:hover::after {
    animation: pulse 1.5s infinite;
}

.btn--video {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn--video::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn--video:hover::before {
    left: 100%;
}

.hero__facts {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.5s forwards;
    opacity: 0;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 200px;
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.fact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fact-text {
    text-align: left;
}

.fact-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.fact-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
    animation: fadeIn 1s ease-out 1.7s forwards;
    opacity: 0;
}

.hero__scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

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

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

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

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

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

@keyframes fadeIn {
    to { opacity: 1; }
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .floating-player {
        height: 50vh;
        opacity: 0.5;
    }
    
    .floating-ball {
        width: 100px;
        height: 100px;
    }
    
    .hero__facts {
        gap: 20px;
    }
    
    .fact-item {
        min-width: 160px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .floating-ball {
        display: none;
    }
    .hero {
        min-height: 700px;
        padding-top: 80px;
        height: auto;
        max-height: initial;
        padding-bottom: 80px;
    }
    
    .floating-player {
        display: none;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__facts {
        grid-template-columns: 1fr;
    }
    
    .fact-item {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__logo img {
        max-width: 200px;
    }
    
    .date-badge,
    .location-badge {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero__scroll {
        bottom: 20px;
    }
}

/* Destaques Section */
.destaques {
    padding: 100px 0;
    background-color: var(--white);
}

.destaques__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destaque-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.destaque-icon {
    width: 70px;
    height: 70px;
    background: rgba(4, 106, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.destaque-card:hover .destaque-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.destaque-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.destaque-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Notícias Section */
.noticias {
    padding: 100px 0;
    background-color: var(--light-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.noticias__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.noticia-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.noticia-imagem {
    position: relative;
    height: auto;
    overflow: hidden;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-imagem img {
    transform: scale(1.05);
}

.noticia-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.noticia-tag--destaque {
    background-color: var(--primary-color);
}

.noticia-tag--exclusivo {
    background-color: var(--secondary-color);
}

.noticia-tag--importante {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.noticia-conteudo {
    padding: 25px;
}

.noticia-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.noticia-meta i {
    margin-right: 5px;
}

.noticia-titulo {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--dark-color);
}

.noticia-resumo {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.noticia-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.noticia-link i {
    transition: var(--transition);
}

.noticia-link:hover {
    color: var(--secondary-color);
}

.noticia-link:hover i {
    transform: translateX(5px);
}

/* Equipes Preview */
.equipes-preview {
    padding: 100px 0;
    background-color: var(--white);
}

.confederacao-slider {
    margin: 50px 0;
}

.confederacao-slide {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.confederacao-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.confederacao-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.confederacao-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.confederacao-header span {
    margin-left: auto;
    background: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

.confederacao-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.equipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.equipe-item {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.equipe-item:hover {
    background: rgba(4, 106, 56, 0.1);
    transform: translateY(-3px);
}

.equipe-nome {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.equipe-pais {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.equipe-pais::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .equipes-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .equipes-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .confederacao-slide {
        padding: 20px;
    }
    
    .confederacao-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .equipes-grid {
        grid-template-columns: 1fr;
    }
    
    .confederacao-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .confederacao-header span {
        margin-left: 0;
        margin-right: auto;
    }
}

/* Estádios Section */
.estadios {
    padding: 100px 0;
    background-color: var(--light-color);
}

.estadios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.estadio-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.estadio-imagem {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.estadio-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.estadio-card:hover .estadio-imagem img {
    transform: scale(1.05);
}

.estadio-info {
    padding: 25px;
}

.estadio-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.estadio-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--gray);
}

.estadio-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.estadio-jogos {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.estadio-jogos span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.estadio-jogos i {
    color: var(--accent-color);
}

.estadios-map {
    margin-top: 60px;
    text-align: center;
}

.estadios-map h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.mapa-imagem {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.mapa-legenda {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legenda-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .estadios-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .estadios {
        padding: 70px 0;
    }
    
    .estadios-grid {
        grid-template-columns: 1fr;
    }
    
    .mapa-legenda {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .estadio-info h3 {
        font-size: 1.3rem;
    }
    
    .estadio-info p {
        font-size: 0.9rem;
    }
    
    .estadio-jogos span {
        font-size: 0.85rem;
    }
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background-color: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contato-info h2 {
    text-align: left;
    margin-bottom: 30px;
}

.contato-info h2::after {
    margin: 15px 0;
}

.contato-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-contato {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-fam);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(4, 106, 56, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.redes-sociais {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.redes-sociais a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.idiomas {
    display: flex;
    gap: 15px;
}

.idiomas a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.idiomas a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.idiomas a:hover {
    color: var(--white);
}

/* Animações */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); }
    40% { transform: translateX(-50%) translateY(-5px) rotate(45deg); }
    60% { transform: translateX(-50%) translateY(-3px) rotate(45deg); }
}

/* Responsivo */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__stats {
        gap: 30px;
    }
    
    .destaques__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav__link {
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .hero {
        min-height: 700px;
        margin-top: 60px;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .destaques__grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__date {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .noticias__grid {
        grid-template-columns: 1fr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .form-contato {
        padding: 30px 20px;
    }
}


/* New Subpage Hero Styles */
.subpage-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #046A38 0%, #DA291C 100%);
    color: white;
    overflow: hidden;
}


.breadcrumbs a {
    color: white;
}

.subpage-hero__container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.subpage-hero__content {
    flex: 1;
    max-width: 600px;
}

.subpage-hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subpage-hero__image img {
    max-width: 400px;
    border-radius: 20px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.subpage-hero__title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subpage-hero__title .title-highlight {
    color: #FEDF00;
    display: inline-block;
}

.subpage-hero__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subpage-hero__buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.subpage-hero__buttons .btn--outline {
    color: white;
}

.subpage-hero__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.meta-item i {
    color: #FEDF00;
}

/* Floating elements animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .subpage-hero__container {
        flex-direction: column;
        text-align: center;
    }
    
    .subpage-hero__content {
        max-width: 100%;
    }
    
    .subpage-hero__buttons {
        justify-content: center;
    }
    
    .subpage-hero__meta {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .subpage-hero__title {
        font-size: 2.2rem;
    }
    
    .subpage-hero__text {
        font-size: 1rem;
    }
    
    .subpage-hero__buttons .btn {
        width: 100%;
    }
}


/* Новые стили для torneo-info */
.torneo-info {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.torneo-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%23046A38" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
    background-size: 120px 120px;
    z-index: 0;
}

.torneo-info .container {
    position: relative;
    z-index: 1;
}

.info-header {
    text-align: center;
    margin-bottom: 60px;
}

.info-header .section-title {
    font-size: 2.5rem;
    color: #0A1E2C;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.info-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #046A38, #DA291C);
    border-radius: 2px;
}

.info-header .section-subtitle {
    font-size: 1.1rem;
    color: #6C757D;
    max-width: 700px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #046A38;
}

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

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 106, 56, 0.03) 0%, rgba(218, 41, 28, 0.03) 100%);
    z-index: 0;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #0A1E2C;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3::before {
    content: '';
    display: block;
    width: 8px;
    height: 25px;
    background: #046A38;
    border-radius: 4px;
}

.info-card p {
    color: #6C757D;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Конкретные стили для разных типов карточек */
.card-animate {
    animation: fadeInUp 0.8s ease-out;
}

.card-animate .info-icon {
    width: 60px;
    height: 60px;
    background: rgba(4, 106, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #046A38;
    font-size: 1.5rem;
}

.confederations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.confed {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.confed.uefa { background: #00529F; color: white; }
.confed.conmebol { background: #F8E71C; color: #333; }
.confed.concacaf { background: #0033A0; color: white; }
.confed.caf { background: #FF0000; color: white; }
.confed.afc { background: #00529F; color: white; }
.confed.ofc { background: #00A651; color: white; }

.structure-card .tournament-structure {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.stage {
    background: rgba(4, 106, 56, 0.05);
    padding: 15px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.stage:hover {
    background: rgba(4, 106, 56, 0.1);
    transform: translateX(5px);
}

.stage-title {
    font-weight: 600;
    color: #046A38;
}

.stage-teams {
    font-size: 0.9rem;
    color: #6C757D;
}

.stage-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6C757D;
}

.stage-arrow::after {
    content: '→';
}

.final-stage .stage-arrow {
    display: none;
}

.timeline-card .timeline {
    position: relative;
    padding-left: 20px;
    margin-top: 25px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(4, 106, 56, 0.2);
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #046A38;
    border: 2px solid white;
}

.timeline-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: #046A38;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.numbers-card .numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.number-item {
    text-align: center;
    padding: 20px;
    background: rgba(4, 106, 56, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.number-item:hover {
    background: rgba(4, 106, 56, 0.1);
    transform: scale(1.05);
}

.number-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #046A38;
    line-height: 1;
    margin-bottom: 5px;
}

.number-label {
    font-size: 0.9rem;
    color: #6C757D;
}

/* Анимации */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптивность */
@media (max-width: 992px) {
    .info-header .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torneo-info {
        padding: 60px 0;
    }
    
    .info-header {
        margin-bottom: 40px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .info-header .section-title {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .number-value {
        font-size: 2rem;
    }
}

/* Estilos para a seção de prêmios */
.prizes {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.prizes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,30 L70,30 L70,70 L30,70 Z" fill="none" stroke="%23FEDF00" stroke-width="1" stroke-opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 0;
}

.prizes .container {
    position: relative;
    z-index: 1;
}

.prizes .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0A1E2C;
    margin-bottom: 15px;
}

.prizes .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #046A38, #DA291C);
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* Grid de cartões principais */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.prize-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #FEDF00;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 223, 0, 0.1) 0%, rgba(254, 223, 0, 0) 70%);
    transform: scale(0);
    transition: all 0.5s ease;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.prize-card:hover::before {
    transform: scale(1);
}

.prize-card i {
    font-size: 2.5rem;
    color: #FEDF00;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.prize-card:hover i {
    transform: scale(1.1) rotate(15deg);
}

.prize-card h3 {
    font-size: 1.5rem;
    color: #0A1E2C;
    margin-bottom: 15px;
}

.prize-card p {
    color: #6C757D;
    line-height: 1.6;
}

.prize-card p strong {
    color: #046A38;
    font-weight: 700;
}

/* Tabela de prêmios */
.prize-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prize-table thead {
    background: linear-gradient(to right, #046A38, #DA291C);
    color: white;
}

.prize-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
}

.prize-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #6C757D;
}

.prize-table tbody tr:last-child td {
    border-bottom: none;
}

.prize-table tbody tr:hover {
    background: rgba(254, 223, 0, 0.05);
}

.prize-table tfoot {
    background: rgba(4, 106, 56, 0.05);
    font-weight: 700;
}

.prize-table tfoot td {
    color: #046A38;
}

/* Prêmios por confederação */
.confederation-prizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.confederation-prize {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 4px solid #FEDF00;
}

.confederation-prize:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.confederation-prize h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #0A1E2C;
    margin-bottom: 10px;
}

.confederation-prize h4 i {
    color: #FEDF00;
    font-size: 1.2rem;
}

.confederation-prize p {
    color: #6C757D;
    font-size: 0.95rem;
    line-height: 1.5;
}

.confederation-prize .note {
    font-size: 0.85rem;
    color: #DA291C;
    margin-top: 5px;
}

/* Notas importantes */
.prize-notes {
    background: rgba(4, 106, 56, 0.03);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
    border: 1px dashed rgba(4, 106, 56, 0.1);
}

.prize-notes h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #0A1E2C;
    margin-bottom: 20px;
}

.prize-notes h4 i {
    color: #DA291C;
}

.prize-notes ul {
    list-style-type: none;
}

.prize-notes li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #6C757D;
    line-height: 1.6;
}

.prize-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FEDF00;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .prizes {
        padding: 60px 0;
    }
    
    .prizes .section-title {
        font-size: 2.2rem;
    }
    
    .confederation-prizes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prizes .section-title {
        font-size: 2rem;
    }
    
    .prize-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-table {
        font-size: 0.9rem;
    }
    
    .prize-table th,
    .prize-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .prizes {
        padding: 50px 0;
    }
    
    .prizes .section-title {
        font-size: 1.8rem;
    }
    
    .confederation-prizes {
        grid-template-columns: 1fr;
    }
    
    .prize-notes {
        padding: 20px;
    }
}


/* Estilos para páginas legais */
.legal-header {
    background: linear-gradient(135deg, #046A38 0%, #DA291C 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 120px 120px;
    opacity: 0.3;
}

.legal-header .container {
    position: relative;
    z-index: 1;
}

.legal-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
}

.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    color: #046A38;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FEDF00;
}

.legal-section h3 {
    color: #0A1E2C;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-section p, 
.legal-section ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul {
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 10px;
    position: relative;
}

.legal-section li::before {
    content: '•';
    color: #DA291C;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.highlight-box {
    background: rgba(4, 106, 56, 0.05);
    border-left: 4px solid #046A38;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #333;
}

.update-date {
    text-align: right;
    font-style: italic;
    color: #777;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .legal-header {
        padding: 60px 0;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-header p {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}