:root {
    /* Основные цвета */
    --bg-color: #F0F4F8;
    --heading-color: #1A365D;
    --text-hover: #335B7A;

    /* Цвета текста */
    --body-1: #2D3748;
    --body-2: #4A5568;
    --body-3: #718096;
    --body-4: #A0AEC0;

    /* Акцентные цвета */
    --accent-color: #3182CE;
    --accent-color-2: #FBE6C2;
    --accent-color-3: #F4D9B6;

    /* Навигация */
    --nav-bg: #1A365D;
    --nav-text: #1A365D;
    --nav-text-hover: #D97706;
    --nav-text-active: #B45309;

    /* Кнопки */
    --btn-color: #4A7AAB;
    --btn-text: #FFFFFF;
    --btn-hover: #3A6795;

    /* Дополнительные элементы */
    --icon-color: #6699CC;
    --card-bg: #FFFFFF;
    --card-stroke: #E2E8F0;

    --highlight-text: #D97706;
    --accent-1: #FBE6C2;
    --accent-2: #F4D9B6;
    --nav-text-white: #FFFFFF;

    /* Environment section colors */
    --ambiente-bg: #F9F9F9;
    --ambiente-heading: #2E8B57;
    --ambiente-circle: #E3F2E7;
    --ambiente-btn-bg: #E2F0E9;
    --ambiente-btn-border: #4D8C6F;
    --ambiente-btn-text: #4D8C6F;

    /* =================================================================
       FONT SYSTEM - Система шрифтов
    ================================================================= */

    /* Основные шрифты */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    /* Размеры шрифтов - Desktop */
    --font-size-hero: 48px;
    --font-size-h1: 40px;
    --font-size-h2: 32px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
    --font-size-body-large: 18px;
    --font-size-body: 16px;
    --font-size-body-small: 14px;
    --font-size-caption: 12px;

    /* Размеры шрифтов - Tablet */
    --font-size-hero-tablet: 36px;
    --font-size-h1-tablet: 32px;
    --font-size-h2-tablet: 28px;
    --font-size-h3-tablet: 24px;
    --font-size-h4-tablet: 22px;
    --font-size-h5-tablet: 18px;
    --font-size-h6-tablet: 16px;
    --font-size-body-large-tablet: 16px;
    --font-size-body-tablet: 15px;
    --font-size-body-small-tablet: 13px;

    /* Размеры шрифтов - Mobile */
    --font-size-hero-mobile: 28px;
    --font-size-h1-mobile: 24px;
    --font-size-h2-mobile: 22px;
    --font-size-h3-mobile: 20px;
    --font-size-h4-mobile: 18px;
    --font-size-h5-mobile: 16px;
    --font-size-h6-mobile: 14px;
    --font-size-body-large-mobile: 14px;
    --font-size-body-mobile: 14px;
    --font-size-body-small-mobile: 12px;

    /* Веса шрифтов */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Высота строк */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /* Межбуквенные расстояния */
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0em;
    --letter-spacing-wide: 0.025em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body {
    background-color: var(--bg-color);
    color: var(--body-1);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-body);
    overflow-x: hidden !important;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

/* =================================================================
   TYPOGRAPHY CLASSES - Типографские классы
================================================================= */

.hero-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--heading-color);
}

.section-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--heading-color);
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--heading-color);
}

.card-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: var(--heading-color);
}

.body-large {
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-relaxed);
    color: var(--body-2);
}

.body-text {
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--body-2);
}

.body-small {
    font-size: var(--font-size-body-small);
    line-height: var(--line-height-normal);
    color: var(--body-3);
}

.decorative-text {
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: var(--font-weight-medium);
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/

header {
    border-bottom: 1px solid var(--card-stroke);
    background-color: var(--bg-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-medium);
    position: relative;
    transition: color 0.3s ease;
    text-transform: capitalize;
    letter-spacing: var(--letter-spacing-normal);
}

.nav-links a:hover {
    color: var(--nav-text-hover);
}

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

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-color);
    border: 1px solid var(--card-stroke);
    border-radius: 20px;
    padding: 8px 16px;
    gap: 8px;
    min-width: 180px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: var(--font-size-caption);
    font-family: var(--font-primary);
    flex: 1;
    color: var(--body-1);
}

.search-box input::placeholder {
    color: var(--body-4);
}

.search-icon {
    color: var(--body-3);
    width: 16px;
    height: 16px;
}

.lang-selector {
    display: flex;
    gap: 2px;
    align-items: center;
    border: 1px solid var(--card-stroke);
    border-radius: 4px;
    overflow: hidden;
}

.lang-option {
    padding: 6px 10px;
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    color: var(--body-3);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.lang-option.active {
    background: var(--highlight-text);
    color: var(--nav-text-white);
}

.lang-option:hover:not(.active) {
    background: var(--bg-color);
    color: var(--body-1);
}

/* Header Responsive */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-links {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: var(--font-size-body-small-tablet);
    }

    .search-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: var(--font-size-body-small-mobile);
    }

    .search-box {
        min-width: 150px;
    }

    .search-box input {
        font-size: var(--font-size-caption);
    }

    .logo img {
        height: 35px;
    }
}

/*--------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 100px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.hero-section {
    background: url('/Users/yana/Desktop/Braga/assets/img/hero.jpeg') no-repeat center;
    background-size: cover;
    border-radius: 15px;
    min-height: 435px;
    position: relative;
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.1);
    overflow: hidden;
    max-width: 890px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.8));
    padding: 40px;
    color: white;
}

.hero-overlay h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 10px;
    color: white;
}

.hero-overlay p {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.news-sidebar {
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--card-stroke);
    box-shadow: 0 4px 6px rgba(26, 54, 93, 0.05);
}

.sidebar-tabs {
    display: flex;
    border-bottom: 1px solid var(--card-stroke);
}

.sidebar-tabs button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-semibold);
    color: var(--body-3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-tabs button.active {
    border-bottom-color: var(--highlight-text);
    color: var(--heading-color);
}

.sidebar-content {
    max-height: 380px;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-content::-webkit-scrollbar {
    width: 8px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: var(--accent-1);
    border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background-color: var(--highlight-text);
    border-radius: 10px;
}

.content-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-stroke);
}

.content-item:last-child {
    border-bottom: none;
}

.content-item h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-semibold);
    color: var(--body-1);
    margin-bottom: 5px;
    line-height: var(--line-height-normal);
}

.content-item p {
    font-size: var(--font-size-body-small);
    color: var(--body-3);
    line-height: var(--line-height-normal);
    margin: 0;
}

.content-item .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.tag {
    display: inline-block;
    background-color: var(--accent-1);
    color: var(--highlight-text);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-primary);
}

.date {
    color: var(--body-4);
    font-size: var(--font-size-caption);
    font-family: var(--font-primary);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .hero-section {
        max-width: 100%;
    }

    .hero-overlay h2 {
        font-size: var(--font-size-h2-tablet);
    }

    .hero-overlay p {
        font-size: var(--font-size-body-tablet);
    }

    .sidebar-tabs button {
        font-size: var(--font-size-body-small-tablet);
    }

    .content-item h4 {
        font-size: var(--font-size-h6-tablet);
    }

    .content-item p {
        font-size: var(--font-size-body-small-tablet);
    }
}

@media (max-width: 768px) {
    .content-grid {
        margin-bottom: 40px;
    }

    .hero-section {
        min-height: 350px;
    }

    .hero-overlay {
        padding: 25px;
    }

    .hero-overlay h2 {
        font-size: var(--font-size-h2-mobile);
        margin-bottom: 8px;
    }

    .hero-overlay p {
        font-size: var(--font-size-body-mobile);
    }

    .sidebar-tabs button {
        padding: 12px;
        font-size: var(--font-size-body-small-mobile);
    }

    .sidebar-content {
        padding: 15px;
        max-height: 320px;
    }

    .content-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .content-item h4 {
        font-size: var(--font-size-h6-mobile);
        margin-bottom: 4px;
    }

    .content-item p {
        font-size: var(--font-size-body-small-mobile);
    }

    .tag {
        font-size: 10px;
        padding: 2px 8px;
    }

    .date {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 300px;
        border-radius: 10px;
    }

    .hero-overlay {
        padding: 20px;
    }

    .hero-overlay h2 {
        font-size: 20px;
    }

    .hero-overlay p {
        font-size: 13px;
    }

    .sidebar-tabs button {
        padding: 10px;
        font-size: 12px;
    }

    .content-item h4 {
        font-size: 13px;
    }

    .content-item p {
        font-size: 11px;
    }
}

/*--------------------------------------------------------------
# WELCOME SECTION
--------------------------------------------------------------*/
.welcome-section {
    margin-top: 160px;
}

.welcome-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-text h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--heading-color);
    margin-bottom: 30px;
}

.welcome-text p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
}

.welcome-text p:last-of-type {
    margin-bottom: 30px;
}

.cta-button {
    background: var(--btn-color);
    color: var(--btn-text);
    width: 200px;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: var(--letter-spacing-normal);
}

.cta-button:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 122, 171, 0.4);
}

.welcome-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.image-stack {
    position: relative;
    width: 450px;
    height: 400px;
    perspective: 1000px;
}

.image-card {
    position: absolute;
    width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-1 {
    z-index: 3;
    top: 0;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    z-index: 2;
    top: 20px;
    left: 30px;
    transform: rotate(5deg);
    animation: float2 6s ease-in-out infinite;
    opacity: 0.9;
}

.card-3 {
    z-index: 1;
    top: 40px;
    left: 60px;
    transform: rotate(10deg);
    animation: float3 6s ease-in-out infinite;
    opacity: 0.8;
}

.image-stack:hover .card-1 {
    transform: translateY(-15px) rotate(-3deg) scale(1.05);
    z-index: 4;
}

.image-stack:hover .card-2 {
    transform: translateY(-10px) rotate(8deg) scale(1.02);
    opacity: 1;
}

.image-stack:hover .card-3 {
    transform: translateY(-5px) rotate(15deg) scale(1.01);
    opacity: 1;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-card.flipping {
    transform: rotateY(180deg);
    opacity: 0;
}

.image-card.active {
    z-index: 10 !important;
    transform: translateY(-20px) rotate(0deg) scale(1.1);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.3);
}

.navigation-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--body-4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--highlight-text);
    transform: scale(1.2);
}

.flip-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--btn-color);
    color: var(--btn-text);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 5;
}

.next-button {
    right: -120px;
}

.prev-button {
    left: -60px;
}

.flip-button:hover {
    background: var(--btn-hover);
    transform: translateY(-50%) scale(1.1);
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(7deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) rotate(10deg);
    }

    50% {
        transform: translateY(-5px) rotate(12deg);
    }
}

/* Welcome Responsive */
@media (max-width: 1024px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .welcome-text h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .welcome-text p {
        font-size: var(--font-size-body-large-tablet);
    }

    .cta-button {
        font-size: var(--font-size-body-tablet);
    }

    .image-stack {
        width: 350px;
        height: 350px;
    }

    .image-card {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }

    .welcome-content {
        gap: 40px;
    }

    .welcome-text h2 {
        font-size: var(--font-size-h1-mobile);
        margin-bottom: 20px;
    }

    .welcome-text p {
        font-size: var(--font-size-body-large-mobile);
        margin-bottom: 15px;
    }

    .cta-button {
        font-size: var(--font-size-body-mobile);
        width: 180px;
        padding: 12px 25px;
    }

    .welcome-image {
        height: 350px;
    }

    .image-stack {
        width: 280px;
        height: 280px;
    }

    .image-card {
        width: 250px;
        height: 250px;
    }

    .card-2 {
        top: 15px;
        left: 20px;
    }

    .card-3 {
        top: 30px;
        left: 40px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 40px 0;
    }

    .welcome-content {
        gap: 30px;
    }

    .welcome-text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .welcome-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .cta-button {
        font-size: 13px;
        width: 160px;
        padding: 10px 20px;
    }

    .welcome-image {
        height: 250px;
    }

    .image-stack {
        width: 220px;
        height: 220px;
    }

    .image-card {
        width: 200px;
        height: 200px;
        border-radius: 15px;
    }

    .flip-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .next-button {
        right: -30px;
    }

    .prev-button {
        left: -30px;
    }
}

/*--------------------------------------------------------------
# HISTORY SECTION
--------------------------------------------------------------*/
.history-section {
    margin-top: 160px;
}

.history-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.history-text h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--heading-color);
    margin-bottom: 30px;
}

.history-text p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
}

.history-text p:last-of-type {
    margin-bottom: 30px;
}

/* History Responsive */
@media (max-width: 1024px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .history-text h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .history-text p {
        font-size: var(--font-size-body-large-tablet);
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }

    .history-content {
        gap: 40px;
    }

    .history-text h2 {
        font-size: var(--font-size-h1-mobile);
        margin-bottom: 20px;
    }

    .history-text p {
        font-size: var(--font-size-body-large-mobile);
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 40px 0;
    }

    .history-content {
        gap: 30px;
    }

    .history-text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .history-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/*--------------------------------------------------------------
# EXPLORE SECTION
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.explore-section {
    margin-top: 160px;
    background-color: var(--bg-color);
}

.explore-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.explore-header-main {
    margin-bottom: 60px;
}

.title-lines {
    position: relative;
}

.title-line-1 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    line-height: var(--line-height-tight);
    margin-bottom: 10px;
}

.title-line-2 {
    margin-left: 300px;
    margin-bottom: 10px;
}

.title-que {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    line-height: var(--line-height-tight);
}

.title-line-3 {
    margin-left: 480px;
}

.explore-highlight {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-style: italic;
    font-size: 90px;
    color: var(--highlight-text);
    line-height: 0.8;
}

.explore-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    height: 555px;
    position: relative;
    padding-left: 20px;
}

.explore-left {
    flex: 0 0 450px;
    height: 555px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.explore-text {
    margin-top: 90px;
    z-index: 2;
    position: relative;
}

.location-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
}

.location-description {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    width: 414px;
    max-width: 100%;
}

.explore-navigation {
    display: flex;
    align-items: center;
    margin-top: auto;
    z-index: 2;
    position: relative;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--body-3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--body-2);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--highlight-text);
    color: white;
    border-color: var(--highlight-text);
}

.prev-btn {
    margin-right: 20px;
}

.nav-line {
    width: 210px;
    height: 1px;
    background: var(--body-3);
    margin: 0 20px;
}

.slide-indicator {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: 2.5rem;
    color: var(--body-3);
    margin-left: 0px;
}

.explore-gallery {
    flex: 1;
    height: 555px;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 0;
    width: 100vw;
    margin-right: -50vw;
}

.gallery-container {
    width: 100%;
    position: relative;
    overflow-x: visible;
    overflow-y: hidden;
}

.gallery-images {
    display: flex;
    gap: 30px;
    height: 555px;
    align-items: center;
    transition: transform 0.5s ease;
    width: calc(430px * 4);
    margin-left: 0;
}

.image-wrapper {
    width: 400px;
    height: 555px;
    position: relative;
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.image-wrapper.active {
    opacity: 1;
    z-index: 2;
}

.image-wrapper:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.explore-year {
    position: absolute;
    top: -3%;
    left: 28%;
    color: var(--heading-color);
    opacity: 30%;
    font-family: var(--font-primary);
    font-size: 100px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: 120%;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

@media (max-width: 1200px) {
    .explore-content {
        flex-direction: column;
        height: auto;
        padding-left: 0;
    }

    .explore-left {
        flex: none;
        width: 100%;
        height: auto;
    }

    .explore-text {
        margin-top: 0;
    }

    .location-description {
        width: 100%;
    }

    .explore-gallery {
        height: 400px;
        margin-top: 40px;
        margin-right: 0;
        width: 100%;
    }

    .gallery-images {
        height: 400px;
    }

    .image-wrapper {
        height: 400px;
        width: 350px;
    }

    .explore-year {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin-bottom: 20px;
        font-size: 80px;
    }
}

@media (max-width: 1024px) {

    .title-line-1,
    .title-que {
        font-size: var(--font-size-h1-tablet);
    }

    .title-line-2 {
        margin-left: 200px;
    }

    .title-line-3 {
        margin-left: 320px;
    }

    .explore-highlight {
        font-size: 70px;
    }

    .location-title {
        font-size: var(--font-size-h1-tablet);
    }

    .location-description {
        font-size: var(--font-size-body-large-tablet);
    }

    .explore-year {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 60px 0;
    }

    .title-line-1,
    .title-que {
        font-size: var(--font-size-h1-mobile);
    }

    .title-line-2 {
        margin-left: 120px;
    }

    .title-line-3 {
        margin-left: 200px;
    }

    .explore-highlight {
        font-size: 50px;
    }

    .location-title {
        font-size: var(--font-size-h1-mobile);
    }

    .location-description {
        font-size: var(--font-size-body-large-mobile);
    }

    .explore-gallery {
        height: 350px;
    }

    .gallery-images {
        height: 350px;
        gap: 20px;
    }

    .image-wrapper {
        height: 350px;
        width: 280px;
    }

    .gallery-image {
        border-radius: 20px;
    }

    .explore-year {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .nav-line {
        width: 150px;
    }

    .slide-indicator {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .explore-section {
        padding: 40px 0;
    }

    .title-line-1,
    .title-que {
        font-size: 20px;
    }

    .title-line-2 {
        margin-left: 80px;
    }

    .title-line-3 {
        margin-left: 120px;
    }

    .explore-highlight {
        font-size: 35px;
    }

    .location-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .location-description {
        font-size: 13px;
    }

    .explore-gallery {
        height: 280px;
    }

    .gallery-images {
        height: 280px;
        gap: 15px;
    }

    .image-wrapper {
        height: 280px;
        width: 220px;
    }

    .gallery-image {
        border-radius: 15px;
    }

    .explore-year {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .prev-btn {
        margin-right: 15px;
    }

    .nav-line {
        width: 100px;
        margin: 0 15px;
    }

    .slide-indicator {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# INNOVATION SECTION
--------------------------------------------------------------*/
.innovation-section {
    margin-top: 160px;
    background-color: var(--bg-color);
}

.innovation-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.innovation-header {
    margin-bottom: 60px;
}

.innovation-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
}

.innovation-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.innovation-intro {
    max-width: 800px;
}

.innovation-intro p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
}

.innovation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.innovation-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--card-stroke);
    display: flex;
    flex-direction: column;
    height: 450px;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.innovation-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.innovation-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.innovation-card:hover .card-image img {
    transform: scale(1.05);
}

.innovation-card .card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.innovation-card .card-content h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    line-height: var(--line-height-normal);
    margin-bottom: 10px;
}

.innovation-card .card-content p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    margin-bottom: 25px;
    flex-grow: 1;
}

.innovation-card .card-button {
    background: transparent;
    color: var(--heading-color);
    border: 1px solid var(--heading-color);
    padding: 12px 25px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: var(--letter-spacing-normal);
    margin-top: auto;
    /* Прижимает кнопку к низу */
}

.innovation-card .card-button:hover {
    background: var(--heading-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .innovation-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .innovation-card {
        height: 420px;
        /* Слегка уменьшена для планшета */
    }

    .innovation-header h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .innovation-intro p {
        font-size: var(--font-size-body-large-tablet);
    }

    .innovation-card .card-content h4 {
        font-size: var(--font-size-h4-tablet);
    }

    .innovation-card .card-content p {
        font-size: var(--font-size-body-large-tablet);
    }

    .innovation-card .card-button {
        font-size: var(--font-size-body-small-tablet);
    }
}

@media (max-width: 768px) {
    .innovation-section {
        padding: 60px 0;
    }

    .innovation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .innovation-card {
        height: 380px;
        /* Уменьшена для мобильных */
    }

    .innovation-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .innovation-intro p {
        font-size: var(--font-size-body-large-mobile);
    }

    .innovation-card .card-content {
        padding: 25px;
    }

    .innovation-card .card-content h4 {
        font-size: var(--font-size-h4-mobile);
    }

    .innovation-card .card-content p {
        font-size: var(--font-size-body-large-mobile);
    }

    .innovation-card .card-button {
        font-size: var(--font-size-body-small-mobile);
        padding: 10px 20px;
    }

    .innovation-card .card-image {
        height: 180px;
        /* Пропорционально уменьшена */
    }
}

@media (max-width: 480px) {
    .innovation-section {
        padding: 40px 0;
    }

    .innovation-header {
        margin-bottom: 40px;
    }

    .innovation-card {
        height: 350px;
        /* Минимальная высота для маленьких экранов */
    }

    .innovation-header h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .innovation-intro p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .innovation-card .card-content {
        padding: 20px;
    }

    .innovation-card .card-content h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .innovation-card .card-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .innovation-card .card-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .innovation-card .card-image {
        height: 150px;
        /* Минимальная высота изображения */
    }
}
/*--------------------------------------------------------------
# CULTURA SECTION
--------------------------------------------------------------*/
.culture-section {
    margin-top: 160px;
    background-color: var(--bg-color);
}

.culture-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.culture-header {
    margin-bottom: 60px;
}

.culture-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    line-height: var(--line-height-tight);
}

.culture-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.culture-header p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
}

.culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: white;
}

.main-overlay h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    line-height: var(--line-height-tight);
}

.main-overlay p {
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    opacity: 0.9;
    margin: 0;
}

.culture-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 450px;
}

.event-item {
    display: flex;
    gap: 0;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--card-stroke);
    transition: all 0.3s ease;
    flex: 1;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.1);
}

.event-image {
    flex-shrink: 0;
    width: 120px;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
    min-width: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.event-date {
    color: var(--highlight-text);
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.event-content h4 {
    color: var(--heading-color);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-content p {
    color: var(--body-3);
    font-size: var(--font-size-body-small);
    font-family: var(--font-primary);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    .culture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image {
        height: 350px;
    }

    .culture-events {
        height: auto;
        gap: 15px;
    }

    .culture-header h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .culture-header p {
        font-size: var(--font-size-body-large-tablet);
    }

    .main-overlay h3 {
        font-size: var(--font-size-h2-tablet);
    }

    .main-overlay p {
        font-size: var(--font-size-body-tablet);
    }

    .event-content h4 {
        font-size: var(--font-size-h6-tablet);
    }

    .event-content p {
        font-size: var(--font-size-body-small-tablet);
    }

    .event-date {
        font-size: var(--font-size-caption);
    }
}

@media (max-width: 768px) {
    .culture-section {
        padding: 60px 0;
    }

    .culture-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .culture-header p {
        font-size: var(--font-size-body-large-mobile);
    }

    .main-image {
        height: 280px;
    }

    .culture-events {
        gap: 12px;
    }

    .main-overlay {
        padding: 25px;
    }

    .main-overlay h3 {
        font-size: var(--font-size-h2-mobile);
    }

    .main-overlay p {
        font-size: var(--font-size-body-mobile);
    }

    .event-image {
        width: 100px;
    }

    .event-content {
        padding: 15px;
    }

    .event-content h4 {
        font-size: var(--font-size-h6-mobile);
        margin-bottom: 8px;
    }

    .event-content p {
        font-size: var(--font-size-body-small-mobile);
    }
}

@media (max-width: 480px) {
    .culture-section {
        padding: 40px 0;
    }

    .culture-header {
        margin-bottom: 40px;
    }

    .culture-header h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .culture-header p {
        font-size: 13px;
    }

    .main-image {
        height: 220px;
        border-radius: 15px;
    }

    .culture-events {
        gap: 10px;
    }

    .main-overlay {
        padding: 20px;
    }

    .main-overlay h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .main-overlay p {
        font-size: 12px;
    }

    .event-item {
        border-radius: 12px;
    }

    .event-image {
        width: 80px;
    }

    .event-content {
        padding: 12px;
    }

    .event-date {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .event-content h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .event-content p {
        font-size: 10px;
    }
}

/*--------------------------------------------------------------
# AMBIENTE SECTION
--------------------------------------------------------------*/
.ambiente-section {
    margin-top: 160px;
    background-color: var(--ambiente-bg);
    border-radius: 20px;
}

.ambiente-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
}

.ambiente-header {
    margin-bottom: 60px;
    text-align: left;
}

.ambiente-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--ambiente-heading);
    margin-bottom: 30px;
    position: relative;
    line-height: var(--line-height-tight);
}

.ambiente-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--ambiente-heading);
}

.ambiente-intro {
    max-width: 800px;
}

.ambiente-intro p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
    width: 660px;
    max-width: 100%;
}

.ambiente-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: var(--card-bg);
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 24px 40px 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--ambiente-circle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.15);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-content h4 {
    font-family: var(--font-primary);
    text-align: center;
    color: var(--ambiente-heading);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    line-height: var(--line-height-normal);
}

.feature-content p {
    color: var(--body-2);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    max-width: 280px;
    text-align: left;
    margin: 0;
}

.iniciativas-section {
    margin-top: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
}

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

.iniciativas-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--ambiente-heading);
    margin-bottom: 20px;
    position: relative;
    line-height: var(--line-height-tight);
}

.iniciativas-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: transparent;
}

.iniciativas-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: var(--card-bg);
}

.iniciativa-card {
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    min-height: 274px;
}

.iniciativa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 139, 87, 0.15);
}

.iniciativa-card h5 {
    font-family: var(--font-primary);
    text-align: left;
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-semibold);
    color: var(--ambiente-heading);
    margin-bottom: 20px;
    line-height: var(--line-height-normal);
}

.iniciativa-card p {
    color: var(--body-2);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    text-align: left;
    line-height: var(--line-height-normal);
    margin-bottom: 25px;
    flex-grow: 1;
}

.iniciativa-button {
    background: var(--ambiente-btn-bg);
    color: var(--ambiente-btn-text);
    border: 1px solid var(--ambiente-btn-border);
    padding: 12px 25px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: var(--letter-spacing-normal);
}

.iniciativa-button:hover {
    background: var(--ambiente-btn-border);
    color: white;
    transform: translateY(-2px);
}

/* Ambiente Responsive */
@media (max-width: 1024px) {
    .ambiente-container {
        padding: 0 30px;
    }

    .ambiente-features {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .feature-item {
        align-items: center;
        padding: 30px 24px 40px 24px;
    }

    .feature-content p {
        max-width: 100%;
    }

    .ambiente-intro p {
        width: 100%;
        max-width: 800px;
        font-size: var(--font-size-body-large-tablet);
    }

    .iniciativas-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ambiente-header h2,
    .iniciativas-header h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .feature-content h4 {
        font-size: var(--font-size-h4-tablet);
    }

    .feature-content p {
        font-size: var(--font-size-body-tablet);
    }

    .iniciativa-card h5 {
        font-size: var(--font-size-h5-tablet);
    }

    .iniciativa-card p {
        font-size: var(--font-size-body-tablet);
    }

    .iniciativa-button {
        font-size: var(--font-size-body-small-tablet);
    }
}

@media (max-width: 768px) {
    .ambiente-section {
        padding: 30px 0;
        margin: 0 20px 40px 20px;
    }

    .ambiente-container {
        padding: 0 20px;
    }

    .iniciativas-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ambiente-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .iniciativas-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .ambiente-intro p {
        font-size: var(--font-size-body-large-mobile);
        width: 100%;
    }

    .iniciativa-card {
        padding: 25px 20px;
        min-height: 250px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon img {
        width: 35px;
        height: 35px;
    }

    .feature-content h4 {
        font-size: var(--font-size-h4-mobile);
    }

    .feature-content p {
        font-size: var(--font-size-body-mobile);
        max-width: 100%;
    }

    .feature-item {
        padding: 20px;
    }

    .iniciativa-card h5 {
        font-size: var(--font-size-h5-mobile);
    }

    .iniciativa-card p {
        font-size: var(--font-size-body-mobile);
    }

    .iniciativa-button {
        font-size: var(--font-size-body-small-mobile);
    }
}

@media (max-width: 480px) {
    .ambiente-section {
        margin: 0 10px 30px 10px;
        padding: 20px 0;
    }

    .ambiente-container {
        padding: 0 15px;
    }

    .ambiente-header h2 {
        font-size: 20px;
    }

    .iniciativas-header h2 {
        font-size: 20px;
    }

    .ambiente-intro p {
        font-size: 13px;
    }

    .iniciativas-section {
        padding: 30px 20px;
    }

    .iniciativa-card {
        padding: 20px 15px;
        min-height: 220px;
    }

    .iniciativa-card h5 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .iniciativa-card p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .iniciativa-button {
        padding: 10px 20px;
        font-size: 11px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-icon img {
        width: 30px;
        height: 30px;
    }

    .feature-content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-content p {
        font-size: 12px;
    }

    .feature-item {
        padding: 15px;
    }
}
/*--------------------------------------------------------------
# EDUCAÇÃO SECTION
--------------------------------------------------------------*/
.educacao-section {
    margin-top: 160px;
    background-color: var(--bg-color);
}

.educacao-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.educacao-header {
    margin-bottom: 60px;
}

.educacao-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    line-height: var(--line-height-tight);
}

.educacao-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.educacao-intro {
    max-width: 800px;
}

.educacao-intro p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
    min-width: 660px;
    max-width: 100%;
}

.educacao-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
    height: 514px;
}

.educacao-main {
    height: 450px;
}

.educacao-main .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
}

.educacao-main .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.educacao-main .main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 1));
    padding: 40px;
    color: white;
}

.educacao-main .main-overlay h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    line-height: var(--line-height-tight);
}

.educacao-main .main-overlay p {
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: 120%;
    opacity: 0.9;
    margin: 0;
}

.educacao-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 450px;
}

.educacao-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-stroke);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.educacao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.1);
}

.educacao-card .card-content {
    padding: 20px 20px;
    flex: 1;
}

.educacao-card .card-content h6 {
    color: var(--heading-color);
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    margin-bottom: 4px;
    line-height: var(--line-height-normal);
}

.educacao-card .card-content p {
    color: var(--body-3);
    font-size: var(--font-size-body-small);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    margin: 0;
}

.educacao-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--highlight-text);
    line-height: var(--line-height-tight);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.stat-label {
    color: var(--body-2);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
}

/* Пульсирующий эффект во время анимации счетчика */
.stat-number.counting {
    animation: pulse 0.1s ease-in-out;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .educacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
        height: auto;
    }

    .educacao-main {
        height: 350px;
    }

    .educacao-cards {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 10px;
    }

    .educacao-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .educacao-header h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .educacao-intro p {
        font-size: var(--font-size-body-large-tablet);
        min-width: auto;
    }

    .educacao-main .main-overlay h3 {
        font-size: var(--font-size-h2-tablet);
    }

    .educacao-main .main-overlay p {
        font-size: var(--font-size-body-large-tablet);
    }

    .educacao-card .card-content h6 {
        font-size: var(--font-size-h6-tablet);
    }

    .educacao-card .card-content p {
        font-size: var(--font-size-body-small-tablet);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: var(--font-size-body-tablet);
    }
}

@media (max-width: 768px) {
    .educacao-section {
        padding: 60px 0;
    }

    .educacao-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .educacao-intro p {
        font-size: var(--font-size-body-large-mobile);
    }

    .educacao-main {
        height: 280px;
    }

    .educacao-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .educacao-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: var(--font-size-body-mobile);
    }

    .educacao-main .main-overlay {
        padding: 25px;
    }

    .educacao-main .main-overlay h3 {
        font-size: var(--font-size-h2-mobile);
    }

    .educacao-main .main-overlay p {
        font-size: var(--font-size-body-large-mobile);
    }

    .educacao-card .card-content {
        padding: 15px 20px;
    }

    .educacao-card .card-content h6 {
        font-size: var(--font-size-h6-mobile);
    }

    .educacao-card .card-content p {
        font-size: var(--font-size-body-small-mobile);
    }
}

@media (max-width: 480px) {
    .educacao-section {
        padding: 40px 0;
    }

    .educacao-header {
        margin-bottom: 40px;
    }

    .educacao-header h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .educacao-intro p {
        font-size: 13px;
        min-width: auto;
    }

    .educacao-main {
        height: 220px;
    }

    .educacao-main .main-overlay {
        padding: 20px;
    }

    .educacao-main .main-overlay h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .educacao-main .main-overlay p {
        font-size: 12px;
    }

    .educacao-cards {
        gap: 10px;
    }

    .educacao-card .card-content {
        padding: 12px 15px;
    }

    .educacao-card .card-content h6 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .educacao-card .card-content p {
        font-size: 11px;
    }

    .educacao-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# DESPORTO SECTION
--------------------------------------------------------------*/
.desporto-section {
    margin-top: 160px;
    background-color: var(--bg-color);
}

.desporto-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.desporto-header {
    margin-bottom: 60px;
}

.desporto-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    line-height: var(--line-height-tight);
}

.desporto-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.desporto-intro {
    max-width: 800px;
}

.desporto-intro p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
}

/* Main Content Layout */
.desporto-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

/* Stadium Main Image */
.stadium-main {
    height: 450px;
}

.stadium-main .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
}

.stadium-main .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stadium-main .main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: white;
}

.stadium-main .main-overlay h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    line-height: var(--line-height-tight);
}

.stadium-main .main-overlay p {
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    opacity: 0.9;
    margin: 0;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 450px;
}

.sport-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* SC Braga */
.sport-card.large-card {
    grid-column: 1 / -1;
    height: 130px;
}

/* Percursos Pedestres  */
.sport-card.wide-card {
    grid-column: 1 / -1;
    height: 130px;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.2);
}

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
}

.card-overlay h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    line-height: var(--line-height-normal);
}

/* Programs Section */
.programas-section {
    margin-bottom: 80px;
}

.programas-header {
    text-align: left;
    margin-bottom: 50px;
}

.programas-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    position: relative;
    display: inline-block;
    line-height: var(--line-height-tight);
}

.programas-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.programas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.programa-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px 20px;
    border: 1px solid var(--card-stroke);
    transition: all 0.3s ease;
    text-align: left;
}

.programa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
}

.programa-card h5 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: var(--line-height-normal);
}

.programa-card p {
    color: var(--body-2);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    margin: 0;
}

/* Events Section */
.eventos-section {
    margin-bottom: 40px;
}

.eventos-header {
    text-align: left;
    margin-bottom: 50px;
}

.eventos-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    position: relative;
    display: inline-block;
    line-height: var(--line-height-tight);
}

.eventos-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.evento-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--card-stroke);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.1);
}

.evento-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--highlight-text);
    color: white;
    border-radius: 10px;
    padding: 15px 10px;
    min-width: 60px;
    text-align: center;
}

.evento-date .month {
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.evento-date .day {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-primary);
    line-height: var(--line-height-tight);
}

.evento-content h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 5px;
    line-height: var(--line-height-normal);
}

.evento-content p {
    color: var(--body-3);
    font-size: var(--font-size-body-small);
    font-family: var(--font-primary);
    margin: 0;
    line-height: var(--line-height-normal);
}

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

.agenda-button {
    background: var(--highlight-text);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: var(--letter-spacing-normal);
}

.agenda-button:hover {
    background: var(--nav-text-active);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

@media (max-width: 1024px) {
    .desporto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stadium-main {
        height: 350px;
    }

    .sports-grid {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .sport-card {
        height: 120px;
    }

    .sport-card.large-card {
        grid-column: 1 / -1;
        height: 100px;
    }

    .sport-card.wide-card {
        grid-column: 1 / -1;
        height: 100px;
    }

    .programas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .desporto-header h2,
    .programas-header h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .eventos-header h3 {
        font-size: var(--font-size-h2-tablet);
    }

    .desporto-intro p {
        font-size: var(--font-size-body-large-tablet);
    }

    .stadium-main .main-overlay h3 {
        font-size: var(--font-size-h2-tablet);
    }

    .stadium-main .main-overlay p {
        font-size: var(--font-size-body-tablet);
    }

    .card-overlay h4 {
        font-size: var(--font-size-h5-tablet);
    }

    .programa-card h5 {
        font-size: var(--font-size-h5-tablet);
    }

    .programa-card p {
        font-size: var(--font-size-body-small-tablet);
    }

    .evento-content h4 {
        font-size: var(--font-size-h6-tablet);
    }

    .evento-content p {
        font-size: var(--font-size-body-small-tablet);
    }

    .agenda-button {
        font-size: var(--font-size-body-tablet);
    }
}

@media (max-width: 768px) {
    .desporto-section {
        padding: 60px 0;
    }

    .desporto-header h2,
    .programas-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .eventos-header h3 {
        font-size: var(--font-size-h2-mobile);
    }

    .desporto-intro p {
        font-size: var(--font-size-body-large-mobile);
    }

    .stadium-main {
        height: 280px;
    }

    .sports-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sport-card,
    .sport-card.large-card,
    .sport-card.wide-card {
        height: 120px;
        grid-column: 1;
    }

    .programas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programa-card {
        padding: 25px 20px;
    }

    .stadium-main .main-overlay,
    .card-overlay {
        padding: 20px;
    }

    .stadium-main .main-overlay h3 {
        font-size: var(--font-size-h2-mobile);
    }

    .stadium-main .main-overlay p {
        font-size: var(--font-size-body-mobile);
    }

    .card-overlay h4 {
        font-size: var(--font-size-h5-mobile);
    }

    .programa-card h5 {
        font-size: var(--font-size-h5-mobile);
    }

    .programa-card p {
        font-size: var(--font-size-body-small-mobile);
    }

    .evento-content h4 {
        font-size: var(--font-size-h6-mobile);
    }

    .evento-content p {
        font-size: var(--font-size-body-small-mobile);
    }

    .agenda-button {
        font-size: var(--font-size-body-mobile);
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .desporto-section {
        padding: 40px 0;
    }

    .desporto-header {
        margin-bottom: 40px;
    }

    .desporto-header h2,
    .programas-header h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .eventos-header h3 {
        font-size: 20px;
    }

    .desporto-intro p {
        font-size: 13px;
    }

    .stadium-main {
        height: 220px;
    }

    .sports-grid {
        gap: 12px;
    }

    .sport-card,
    .sport-card.large-card,
    .sport-card.wide-card {
        height: 100px;
        border-radius: 12px;
    }

    .programas-section {
        margin-bottom: 60px;
    }

    .programas-header {
        margin-bottom: 30px;
    }

    .programas-grid {
        gap: 15px;
    }

    .programa-card {
        padding: 20px 15px;
    }

    .programa-card h5 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .programa-card p {
        font-size: 11px;
    }

    .eventos-section {
        margin-bottom: 30px;
    }

    .eventos-header {
        margin-bottom: 30px;
    }

    .eventos-grid {
        gap: 15px;
        margin-bottom: 30px;
    }

    .evento-card {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .evento-date {
        padding: 10px 8px;
        min-width: 50px;
    }

    .evento-date .month {
        font-size: 9px;
    }

    .evento-date .day {
        font-size: 1.2rem;
    }

    .evento-content h4 {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .evento-content p {
        font-size: 10px;
    }

    .agenda-button {
        font-size: 12px;
        padding: 10px 20px;
    }

    .stadium-main .main-overlay,
    .card-overlay {
        padding: 15px;
    }

    .stadium-main .main-overlay h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .stadium-main .main-overlay p {
        font-size: 11px;
    }

    .card-overlay h4 {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# SAUDE E BEM ESTAR SECTION
--------------------------------------------------------------*/
.saude-section {
    margin-top: 100px;
    background-color: #F5F9FF;
    padding: 80px 0;
    border-radius: 20px;
    padding: 40px;
}

.saude-container {
    max-width: 1440px;
    margin: 0 auto;
}

.saude-header {
    margin-bottom: 60px;
}

.saude-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    line-height: var(--line-height-tight);
}

.saude-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.saude-intro {
    max-width: 800px;
}

.saude-intro p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
}

.saude-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
    height: 514px;
    min-height: 500px;
}

.saude-main {
    display: flex;
    flex-direction: column;
    height: 450px;
}

.saude-main .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    height: 100%;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
}

.saude-main .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saude-main .main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: white;
}

.saude-main .main-overlay h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    line-height: var(--line-height-tight);
}

.saude-main .main-overlay p {
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    opacity: 0.9;
    margin: 0 0 20px 0;
}

.saude-button {
    background: var(--highlight-text);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.saude-button:hover {
    background: var(--nav-text-active);
    transform: translateY(-2px);
}


.saude-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 450px;
}

.saude-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-stroke);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: stretch;
    height: calc((100% - 40px) / 3);
    padding: 0;
    overflow: hidden;
}

.saude-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.1);
}

.saude-card .card-content {
    padding: 12px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.saude-card .card-content h6 {
    color: var(--heading-color);
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    margin-bottom: 6px;
    line-height: var(--line-height-normal);
}

.saude-card .card-content p {
    color: var(--body-3);
    font-size: var(--font-size-body-small);
    font-family: var(--font-primary);
    line-height: 1.3;
    margin: 0 0 8px 0;
    flex-grow: 1;
}

.card-link {
    background: transparent;
    color: var(--heading-color);
    border: 1px solid var(--btn-color);
    border-radius: 12px;
    padding: 8px 16px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.card-link::after {
    content: '↗';
    font-size: 14px;
    font-weight: normal;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
    margin-left: auto;
}

.card-link:hover {
    border-color: var(--heading-color);
    background: var(--heading-color);
    color: white;
}

.card-link:hover::after {
    transform: translate(2px, -2px);
}

.saude-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 80px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--highlight-text);
    line-height: var(--line-height-tight);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.stat-label {
    color: var(--body-2);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
}

.stat-number.counting {
    animation: pulse 0.1s ease-in-out;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.programas-saude-section {
    margin-bottom: 80px;
}

.programas-saude-header {
    text-align: left;
    margin-bottom: 50px;
}

.programas-saude-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    position: relative;
    display: inline-block;
    line-height: var(--line-height-tight);
}

.programas-saude-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.programas-saude-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.programa-saude-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px 20px;
    border: 1px solid var(--card-stroke);
    transition: all 0.3s ease;
    text-align: left;
}

.programa-saude-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
}

.programa-saude-card h5 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: var(--line-height-normal);
}

.programa-saude-card p {
    color: var(--body-2);
    font-size: var(--font-size-body-small);
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
    margin: 0;
}

.programa-saude-button-container {
    text-align: center;
}

.programa-saude-button {
    background: var(--highlight-text);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.programa-saude-button:hover {
    background: var(--nav-text-active);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.protecao-section {
    margin-bottom: 40px;
}

.protecao-header {
    text-align: left;
    margin-bottom: 50px;
}

.protecao-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: var(--line-height-tight);
}

.protecao-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--highlight-text);
}

.protecao-header p {
    color: var(--body-2);
    font-size: var(--font-size-body-large);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin: 0;
}

.protecao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.protecao-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px 20px 20px 20px;
    border: none;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.protecao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.1);
}

.protecao-card h5 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-semibold);
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: var(--line-height-tight);
}

.protecao-card p {
    color: var(--body-2);
    font-size: var(--font-size-body-small);
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    margin: 0 0 30px 0;
}

.protecao-link {
    background: transparent;
    color: var(--heading-color);
    border: 1px solid var(--btn-color);
    border-radius: 12px;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: auto;
}

.protecao-link::after {
    content: '↗';
    font-size: 14px;
    font-weight: normal;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
    margin-left: auto;
}
.protecao-link:hover {
    border-color: var(--heading-color);
    background: var(--heading-color);
    color: white;
}

.protecao-link:hover::after {
    transform: translate(2px, -2px);
    color: white;
}

/* Emergency Contacts Section */
.emergencia-section {
    background: var(--accent-2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
}

.emergencia-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: var(--line-height-tight);
}

.emergencia-contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.emergency-contact-card {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.emergency-contact-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--highlight-text);
    margin-bottom: 10px;
    line-height: var(--line-height-tight);
    white-space: nowrap;
}

.emergency-contact-label {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-medium);
    color: var(--body-1);
    line-height: var(--line-height-normal);
}

/* Saude Responsive */
@media (max-width: 1024px) {
    .saude-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .saude-main {
        height: 400px;
    }

    .saude-main .main-image {
        height: 100%;
        flex: none;
    }

    .saude-cards {
        height: auto;
        grid-template-columns: 1fr;
        display: grid;
        gap: 20px;
    }

    .saude-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .programas-saude-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .protecao-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .emergencia-contacts {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .saude-header h2,
    .programas-saude-header h2,
    .protecao-header h2 {
        font-size: var(--font-size-h1-tablet);
    }

    .emergencia-header h3 {
        font-size: var(--font-size-h2-tablet);
    }

    .saude-intro p,
    .protecao-header p {
        font-size: var(--font-size-body-large-tablet);
    }

    .saude-main .main-overlay h3 {
        font-size: var(--font-size-h2-tablet);
    }

    .saude-main .main-overlay p {
        font-size: var(--font-size-body-tablet);
    }

    .saude-card .card-content h6 {
        font-size: var(--font-size-h6-tablet);
    }

    .saude-card .card-content p {
        font-size: var(--font-size-body-small-tablet);
    }

    .programa-saude-card h5,
    .protecao-card h5 {
        font-size: var(--font-size-h5-tablet);
    }

    .programa-saude-card p,
    .protecao-card p {
        font-size: var(--font-size-body-small-tablet);
    }

    .programa-saude-button {
        font-size: var(--font-size-body-tablet);
    }

    .contact-number {
        font-size: 1.8rem;
    }

    .contact-label {
        font-size: var(--font-size-body-small-tablet);
    }
}

@media (max-width: 768px) {
    .saude-section {
        padding: 60px 0;
    }

    .saude-header h2,
    .programas-saude-header h2,
    .protecao-header h2 {
        font-size: var(--font-size-h1-mobile);
    }

    .emergencia-header h3 {
        font-size: var(--font-size-h2-mobile);
    }

    .saude-intro p,
    .protecao-header p {
        font-size: var(--font-size-body-large-mobile);
    }

    .saude-main {
        height: 300px;
    }

    .saude-cards {
        gap: 15px;
    }

    .saude-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 0;
        margin-bottom: 60px;
    }

    .programas-saude-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programas-saude-section,
    .protecao-section {
        margin-bottom: 60px;
    }

    .protecao-section,
    .emergencia-section {
        padding: 30px 20px;
    }

    .protecao-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .emergencia-contacts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .saude-main .main-overlay {
        padding: 25px;
    }

    .saude-main .main-overlay h3 {
        font-size: var(--font-size-h2-mobile);
    }

    .saude-main .main-overlay p {
        font-size: var(--font-size-body-mobile);
    }

    .saude-card .card-content {
        padding: 15px 20px;
    }

    .saude-card .card-content h6 {
        font-size: var(--font-size-h6-mobile);
    }

    .saude-card .card-content p {
        font-size: var(--font-size-body-small-mobile);
    }

    .programa-saude-card,
    .protecao-card {
        padding: 25px 20px;
    }

    .programa-saude-card h5,
    .protecao-card h5 {
        font-size: var(--font-size-h5-mobile);
    }

    .programa-saude-card p,
    .protecao-card p {
        font-size: var(--font-size-body-small-mobile);
    }

    .programa-saude-button {
        font-size: var(--font-size-body-mobile);
        padding: 12px 25px;
    }

    .card-link,
    .protecao-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .contact-number {
        font-size: 1.5rem;
    }

    .contact-label {
        font-size: var(--font-size-body-small-mobile);
    }
}

@media (max-width: 480px) {
    .saude-section {
        padding: 40px 0;
    }

    .saude-header {
        margin-bottom: 40px;
    }

    .saude-header h2,
    .programas-saude-header h2,
    .protecao-header h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .emergencia-header h3 {
        font-size: 20px;
    }

    .saude-intro p,
    .protecao-header p {
        font-size: 13px;
    }

    .saude-main {
        height: 250px;
    }

    .saude-main .main-overlay {
        padding: 20px;
    }

    .saude-main .main-overlay h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .saude-main .main-overlay p {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .saude-button {
        padding: 8px 16px;
        font-size: 11px;
    }

    .saude-cards {
        gap: 12px;
    }

    .saude-card .card-content {
        padding: 12px 15px;
    }

    .saude-card .card-content h6 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .saude-card .card-content p {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .card-link,
    .protecao-link {
        font-size: 11px;
        padding: 6px 12px;
    }

    .card-link::after,
    .protecao-link::after {
        font-size: 12px;
    }

    .saude-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 13px;
    }

    .programas-saude-section {
        margin-bottom: 40px;
    }

    .programas-saude-header {
        margin-bottom: 30px;
    }

    .programas-saude-grid {
        gap: 15px;
        margin-bottom: 30px;
    }

    .programa-saude-card {
        padding: 20px 15px;
    }

    .programa-saude-card h5 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .programa-saude-card p {
        font-size: 11px;
    }

    .programa-saude-button {
        font-size: 12px;
        padding: 10px 20px;
    }

    .protecao-section {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .protecao-header {
        margin-bottom: 30px;
    }

    .protecao-card {
        padding: 20px 15px;
    }

    .protecao-card h5 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .protecao-card p {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .emergencia-section {
        padding: 25px 15px;
    }

    .emergencia-header h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-number {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .contact-label {
        font-size: 10px;
    }
}
/*--------------------------------------------------------------
# FOOTER SECTION
--------------------------------------------------------------*/
.footer {
    background-color: var(--nav-bg);
    color: var(--text-light);
    padding: 80px 0 40px;
    margin-top: 200px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--nav-text-white);
    font-family: Cormorant Garamond, serif;
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    margin-bottom: 30px;
    position: relative;
}

.footer-section.contact h3::after,
.footer-section.links h3::after,
.footer-section.programs h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color-2);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li a {
    color: var(--body-4);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    transition: color 0.3s ease;
    display: block;
}

.footer-section ul li a:hover {
    color: var(--nav-text-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    background: none;
    border: none;
    padding: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--accent-color-2);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color-2);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--nav-text-white);
    color: var(--nav-text-white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--body-3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--body-3);
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
}

.logo-section h2 {
    color: var(--nav-text-white);
    font-family: var(--font-secondary);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-container {
        padding: 0 30px;
    }

    .footer-section h3 {
        font-size: var(--font-size-h4-tablet);
    }

    .footer-section ul li a,
    .contact-item {
        font-size: var(--font-size-body-tablet);
    }

    .logo-section h2 {
        font-size: var(--font-size-h2-tablet);
    }

    .footer-bottom p {
        font-size: var(--font-size-body-small-tablet);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-section h3 {
        font-size: var(--font-size-h4-mobile);
        margin-bottom: 20px;
    }

    .footer-section ul li a,
    .contact-item {
        font-size: var(--font-size-body-mobile);
    }

    .social-icons {
        justify-content: center;
    }

    .logo-section h2 {
        font-size: var(--font-size-h2-mobile);
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-bottom p {
        font-size: var(--font-size-body-small-mobile);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section ul li a,
    .contact-item {
        font-size: 14px;
    }

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

    .contact-item {
        margin-bottom: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .social-icons {
        gap: 12px;
    }

    .logo-section h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}