/* CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Aeris Color Palette */
    --azul-aeris: #043E52;
    --verde-aeris: #016A6D;
    --laranja-aeris: #E16A3D;
    --tangerina-aeris: #FFA45D;
    --white: #FFFFFF;
    --black: #000000;
    --gray-400: #404040;
    --gray-500: #A0A8AC;
    --gray-950: #323639;
    --neutral-gray-500: #A0A8AC;
    --dark: #0A142F;
    
    /* Typography */
    --font-family: 'Roboto', sans-serif;
    
    /* Layout */
    --container-max-width: 1440px;
    --container-padding: 156px;
    
    /* Shadows */
    --shadow-card: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    --shadow-hero: 4px 4px 20px 1px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 1600px) {
    .container {
        padding: 0 80px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}

/* Typography */
.section-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--white);
}

.section-subtitle-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    color: var(--laranja-aeris);
}

.section-line {
    width: 100%;
    height: 1px;
    background-color: var(--laranja-aeris);
    margin-top: 12px;
}

.section-line-orange {
    width: 40px;
    height: 1px;
    background-color: var(--tangerina-aeris);
    margin: 12px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 26px;
    height: 46px;
    border: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.17;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #055a73;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--azul-aeris);
}

.btn-submit {
    background-color: var(--verde-aeris);
    color: var(--white);
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 13.5px 24px;
    height: auto;
}

.btn-submit:hover {
    background-color: #018a8e;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    padding: 24px 0 16px;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
}

.header.scrolled .nav-link {
    color: var(--azul-aeris);
}

.header.scrolled .nav-link:hover {
    color: var(--laranja-aeris);
}


.header.scrolled .mobile-menu-toggle span {
    background-color: var(--verde-aeris);
}

/* Mobile menu open - white text for links */
.header .header-nav.active .nav-link {
    color: var(--white);
}

.header .header-nav.active .nav-link:hover {
    color: var(--laranja-aeris);
}

.header.scrolled .logo {
    height: 40px;
    width: auto;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 193px;
}

.header-logo {
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.17;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--laranja-aeris);
}

.header-cta .btn {
    background-color: var(--verde-aeris);
    width: 180px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile menu active state - perfect X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .header .container {
        gap: 20px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--azul-aeris);
        flex-direction: column;
        gap: 0;
        padding: 20px 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-nav .nav-link {
        color: var(--white);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-nav .nav-link:hover {
        color: var(--laranja-aeris);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 0;
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .header .container {
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 16px;
    }
    
    .logo {
        height: 30px;
        width: 82px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
        border-radius: 2px;
    }
    
    .header.scrolled .logo {
        height: 30px;
        width: 82px;
    }
    
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--azul-aeris);
        flex-direction: column;
        gap: 0;
        padding: 20px 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-nav .nav-link {
        color: var(--white);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-nav .nav-link:hover {
        color: var(--laranja-aeris);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 831px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: 
        linear-gradient(177.16deg, rgba(0, 0, 0, 0) 44.16%, rgba(7, 17, 25, 0.8) 89%),
        linear-gradient(279.07deg, rgba(0, 0, 0, 0) 42.16%, rgba(4, 9, 13, 0.35) 48.04%, rgba(7, 17, 25, 0.7) 71.57%),
        url('assets/images/hero-background.png');
    background-size: cover, cover, cover;
    background-position: center, center, center -350px;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.hero .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-background {
    display: none;
}

.hero-bg-image {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 663px;
    margin-left: 0;
    padding-left: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 636px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        text-align: center;
        padding: 120px 0 0;
        justify-content: center;
        background: 
            linear-gradient(177.16deg, rgba(0, 0, 0, 0) 44.16%, rgba(7, 17, 25, 0.8) 89%),
            linear-gradient(279.07deg, rgba(0, 0, 0, 0) 42.16%, rgba(4, 9, 13, 0.35) 48.04%, rgba(7, 17, 25, 0.7) 71.57%),
            url('assets/images/hero-background.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero .container {
        align-items: center;
        padding-top: 0px;
    }
    
    .hero-content {
        padding: 0 40px;
        width: 100%;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.33;
        margin-bottom: 40px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        text-align: left;
        padding: 70px 0 0;
        justify-content: flex-start;
        background: 
            linear-gradient(177.16deg, rgba(0, 0, 0, 0) 44.16%, rgba(7, 17, 25, 0.8) 89%),
            linear-gradient(262.04deg, rgba(0, 0, 0, 0) 1.43%, rgba(4, 9, 13, 0.35) 28.56%, rgba(7, 17, 25, 0.7) 43.27%),
            url('assets/images/hero-background.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    
    .hero .container {
        align-items: flex-start;
        padding-top: 0px;
    }
    
    .hero-content {
        padding: 0 16px;
        width: 100%;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 64px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.33;
        margin-bottom: 24px;
        text-align: left;
        max-width: 343px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 40px;
    }
    
    .hero-buttons .btn {
        width: auto;
        padding: 5px 26px;
        height: 46px;
        font-size: 16px;
        font-weight: 700;
    }
}

@media (max-width: 430px) {
    .hero{
        height: auto;
    }

    .hero-text {
        margin-top: 150px;
    }
    
    .hero-buttons {
        margin-bottom: 150px;
    }    
}

/* Statistics Section */
.statistics {
    position: relative;
    z-index: 10;
    margin-top: -94px;
}

.stats-grid {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 35px;
    height: 160px;
    box-shadow: var(--shadow-card);
}

.stat-card-green {
    background-color: var(--verde-aeris);
}

.stat-card-blue {
    background-color: var(--azul-aeris);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 0.8;
    color: var(--white);
}

.stat-label {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
    text-align: center;
    width: 213px;
}

@media (max-width: 768px) {
    .statistics {
        position: relative;
        z-index: 10;
        margin-top: -120px;
        padding: 0 16px;
    }
    
    .stats-grid {
        justify-content: center;
        gap: 16px;
    }
    
    .stat-card {
        padding: 16px 12px;
        width: 172px;
        height: 112px;
        min-height: auto;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 24px;
        line-height: 1.33;
    }
    
    .stat-label {
        font-size: 16px;
        line-height: 1;
        font-weight: 300;
        width: 125px;
        text-align: center;
    }
}

/* About Section */
.about {
    padding: 80px 0 0;
    background-color: #FFF;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 104px;
    margin-bottom: 60px;
}

.about-image {
    flex-shrink: 0;
    width: 480px;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-header {
    max-width: 100%;
}

.about-header .section-subtitle {
    margin-bottom: 16px;
}

.about-header .section-subtitle-text {
    color: var(--laranja-aeris);
}

.about-header .section-title {
    color: var(--black);
    margin-bottom: 24px;
}

.text-highlight {
    color: var(--verde-aeris);
}

.about-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-400);
    max-width: 553px;
}

.leadership-title h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--black);
    text-align: left;
    max-width: 1130px;
    margin: 0 auto;
}

.highlight-orange {
    color: #E16A3D;
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .about-image {
        width: 100%;
        max-width: 480px;
    }
    
    .about-text {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0 0;
    }
    
    .about-content {
        padding: 0 16px;
        gap: 24px;
        margin-bottom: 32px;
        flex-direction: column;
        align-items: center;
    }
    
    .about-image {
        width: 100%;
        max-width: 343px;
        order: 1;
    }
    
    .about-text {
        order: 2;
        text-align: left;
        gap: 24px;
        width: 100%;
    }
    
    .about-header {
        max-width: 100%;
    }
    
    .about-header .section-subtitle-text {
        font-size: 20px;
        line-height: 2;
    }
    
    .about-header .section-title {
        font-size: 32px;
        line-height: 1.25;
    }
    
    .about-description {
        font-size: 20px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .leadership-title h3 {
        font-size: 32px;
        line-height: 1.25;
        padding: 0 16px;
        text-align: left;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

/* Mission/Vision Section */
.mission-vision {
    padding: 0 0 80px 0;
    background-color: #FFF;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1128px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    padding: 48px 40px;
    color: var(--white);
}

.mission-card {
    background: rgba(0, 0, 0, 0.65) url('assets/images/our-mission.jpg');
    background-size: cover;
    background-blend-mode: multiply;
}

.vision-card {
    background: rgba(0, 0, 0, 0.4) url('assets/images/our-vision.jpg');
    background-size: cover;
    background-blend-mode: multiply;
}

.card-header {
    margin-bottom: 32px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background-color: var(--laranja-aeris);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
    color: var(--white);
}

.card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    color: var(--white);
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 16px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 48px 40px;
    }
    
    .card-badge {
        font-size: 24px;
        line-height: 1.33;
    }
    
    .card-text {
        font-size: 16px;
        line-height: 1.625;
    }
}

/* Values Section */
.values {
    padding: 100px 0 0;
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(-90deg, var(--verde-aeris) 0%, var(--azul-aeris) 50%);
    z-index: 0;
}

.values::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    height: 35%;
    background-color: var(--white);
    z-index: 0;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.values-header .section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.17;
    color: var(--white);
    margin-bottom: 12px;
}

.values-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.17;
    color: var(--white);
    max-width: 800px;
    margin: 24px auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 1128px;
    margin: 60px auto -120px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.values-image {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    max-width: 100%;
    height: auto;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.17;
    color: var(--black);
    margin-bottom: 8px;
}

.value-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.17;
    color: var(--gray-400);
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin: 40px auto -90px;
    }
    
    .values-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .values-image img {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .values {
        padding: 56px 16px 0;
    }
    
    .values::before {
        height: 55%;
    }
    
    .values::after {
        top: 55%;
        height: 45%;
    }
    
    .values-header {
        margin-bottom: 24px;
        padding: 0 16px;
    }
    
    .values-header .section-title {
        font-size: 32px;
        line-height: 1.17;
    }
    
    .values-subtitle {
        font-size: 20px;
        line-height: 1.17;
        margin-top: 12px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 16px;
        margin: 30px auto -70px;
        text-align: left;
    }
    
    .values-image {
        width: 100%;
        max-width: 343px;
        order: 2;
        margin: 0 auto;
    }
    
    .values-image img {
        width: 100%;
        max-width: 343px;
        height: 343px;
    }
    
    .value-card {
        gap: 16px;
        align-items: flex-start;
    }
    
    .value-icon {
        width: 62px;
        height: 62px;
    }
    
    .value-title {
        font-size: 20px;
        line-height: 1.17;
    }
    
    .value-description {
        font-size: 16px;
        line-height: 1.17;
    }
}

/* Team Section */
.team {
    padding: 200px 0 80px;
    background-color: #FBFEFF;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1130px;
    margin: 50px auto;
    position: relative;
    z-index: 3;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 4;
}

.team-member .team-image {
    position: absolute;
    top: -90px;
    right: -10px;
    z-index: 5;
}

.team-member:nth-child(2) {
    flex-direction: row-reverse;
}

.team-member:nth-child(2) .team-image {
    position: absolute;
    bottom: -80px;
    left: -10px;
    top: auto;
    right: auto;
    z-index: 5;
}

.team-card {
    flex: 1;
    padding: 40px;
    max-width: 70%;
}

.team-member:first-child .team-card {
    margin-right: 200px;
}

.team-member:nth-child(2) .team-card {
    margin-left: 200px;
    min-height: 450px;
}

.team-card-blue {
    background-color: var(--azul-aeris);
}

.team-card-green {
    background-color: var(--verde-aeris);
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.67;
    color: var(--white);
}

.team-bio {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    color: var(--white);
}

.team-image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

@media (max-width: 1024px) {
    .team-member,
    .team-member:nth-child(2) {
        flex-direction: column;
        text-align: center;
    }
    
    .team-card {
        max-width: 100%;
    }
    
    .team-member:first-child .team-card,
    .team-member:nth-child(2) .team-card {
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
        order: 1;
    }
    
    .team-member .team-image,
    .team-member:nth-child(2) .team-image {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto 0;
        order: 2;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 150px 0 24px;
    }
    
    .team-grid {
        gap: 24px;
        padding: 0 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .team-member {
        flex-direction: column;
        gap: 0;
    }
    
    .team-member:nth-child(2) {
        flex-direction: column;
    }
    
    .team-card {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .team-content {
        padding: 40px 16px;
        margin: 0;
    }
    
    .team-card-blue {
        order: 1;
        margin-top: 0;
        z-index: 10;
        position: relative;
    }
    
    .team-card-green {
        order: 1;
        margin-top: 0;
        z-index: 10;
        position: relative;
    }
    
    .team-content {
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }
    
    .team-name {
        font-size: 24px;
        line-height: 1.67;
    }
    
    .team-bio {
        font-size: 16px;
        line-height: 1.875;
        max-width: 100%;
    }
    
    .team-member .team-image,
    .team-member:nth-child(2) .team-image {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 316px;
        height: 316px;
        order: 2;
        margin: 0 auto 0;
    }
}

/* Partners Section */
.partners {
    padding: 40px 0;
    background-color: #FBFEFF;
}

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

.partners-header .section-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--laranja-aeris);
    margin-bottom: 24px;
}

.partners-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    color: var(--black);
}

.partners-carousel {
    position: relative;
}

.partners-controls {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 16px;
}

.carousel-btn {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover svg path {
    stroke: var(--azul-aeris);
}

.partners-slider {
    display: flex;
    gap: 23px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

.partner-card {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-shrink: 0;
    width: 343px;
    height: 420px;
    background-color: var(--white);
    padding: 32px 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-logo {
    width: 312px;
    height: 167px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px 38px;
}

.partner-logo-gs {
    background-color: #061735;
    padding: 44px 21px;
}

.partner-logo-r2 {
    background-color: #000000;
    padding: 44px 21px;
}

.partner-logo-full {
    padding: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-400);
    flex: 1;
}

@media (max-width: 768px) {
    .partners {
        padding: 0 0 32px;
    }
    
    .partners-header {
        margin-bottom: 16px;
        padding: 0 16px;
    }
    
    .partners-header .section-title {
        font-size: 32px;
        line-height: 1.25;
        text-align: center;
    }
    
    .partners-subtitle {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }
    
    .partners-controls {
        gap: 48px;
        margin-top: 16px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .partners-slider {
        /* padding: 0 15px; */
        gap: 23px;
        overflow-x: auto;
    }
    
    .partner-card {
        width: 343px;
        height: 420px;
        padding: 32px 16px;
        flex-shrink: 0;
    }
    
    .partner-logo {
        width: 312px;
        height: 167px;
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding: 48px 0;
    background: rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(rgba(4, 62, 82, 0.85), rgba(4, 62, 82, 0.85)), url('assets/images/backrgound-contact.jpg');
    background-size: cover;
    background-position: center;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-info {
    flex: 1;
    max-width: 552px;
}

.contact-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
}

.contact-form-container {
    flex: 1;
    max-width: 552px;
    background-color: var(--white);
    padding: 40px 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14;
    color: var(--gray-950);
}

.form-group input,
.form-group select {
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #8C8C8C;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--azul-aeris);
}

.form-group input::placeholder {
    color: var(--neutral-gray-500);
}

.phone-input {
    display: flex;
    gap: 0;
}

.country-code {
    width: auto;
    min-width: 80px;
    border-right: none;
}

.phone-input input {
    flex: 1;
    border-left: none;
}

@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 16px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    
    .contact-subtitle {
        font-size: 20px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .contact-form-container {
        width: 100%;
        padding: 40px 24px;
        margin-top: 20px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-group label {
        font-size: 14px;
        line-height: 1.14;
    }
    
    .form-group input,
    .form-group select {
        height: 44px;
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Footer */
.footer {
    background-color: white;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #043E52;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #043E52;
    margin: 0;
}

.footer-social {
    margin-top: 8px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-label {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin: 0;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 400;
    color: #043E52;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #E16A3D;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .social-row {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-main {
        gap: 30px;
        text-align: left;
    }
    
    .footer-brand {
        align-items: flex-start;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .social-row {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-self: flex-start;
    }
    
    .footer-copyright {
        align-self: flex-start;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        gap: 20px;
        text-align: left;
    }
    
    .footer-brand {
        align-items: flex-start;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .social-row {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-links {
        align-self: flex-start;
    }
    
    .footer-copyright {
        align-self: flex-start;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-card {
        padding: 24px 20px;
        height: auto;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 16px;
        width: auto;
    }
    
    .team-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .team-grid {
        padding: 0 16px;
        margin: 0 auto;
    }
    
    .team-card {
        width: 100%;
        max-width: 100%;
    }
    
    .team-content {
        padding: 40px 16px;
        margin: 0;
    }
    
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--azul-aeris);
    outline-offset: 2px;
}

/* Event Popup */
.event-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.event-popup-overlay.event-popup-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.event-popup-modal {
    position: relative;
    width: fit-content;
    max-width: min(90vw, 1080px);
    max-height: 90vh;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.event-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--azul-aeris);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.event-popup-close:hover {
    background-color: var(--white);
    color: var(--verde-aeris);
}

.event-popup-close:focus {
    outline: 2px solid var(--azul-aeris);
    outline-offset: 2px;
}

.event-popup-link {
    display: block;
    line-height: 0;
}

.event-popup-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

body.event-popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .event-popup-overlay {
        padding: 12px;
    }

    .event-popup-modal {
        max-width: 95%;
    }

    .event-popup-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .event-popup-overlay {
        padding: 8px;
    }

    .event-popup-modal {
        max-width: 100%;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .carousel-btn,
    .event-popup-overlay {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 400px;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}
