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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

/* CSS Variables */
:root {
    --text-color: #00164f;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-light: #f8f9ff;
    --shadow-md: 0 4px 6px -1px rgba(0, 22, 79, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 22, 79, 0.1);
    --container-max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* Utility Classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #03239C;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}



.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.button--primary {
    background: #031656;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 56px;
}

.button--primary:hover {
    background: #042073;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button--secondary {
    background-color: #C3DF3B;
    color: #031038;
    font-size: 16px;
    font-weight: 500;
    border-radius: 56px;
}

.button--secondary:hover {
    background-color: #a8c330;
    transform: translateY(-2px);
    color: #031038;
    text-decoration: none;
}



/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    height: auto;
}

.nav__logo-img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav__logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    height: 100%;
}

.nav__item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__link {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__link:hover {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav__link.active {
    font-weight: 600;
}



.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #03239C;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/bg-hero.png') center center / cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 22, 79, 0.3);
    opacity: 1;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    gap: 4rem;
    padding-top: 120px;
}

/* Hero Rows */
.hero__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__row--first {
    margin-bottom: 0;
}

.hero__row--second {
    align-items: start;
}

.hero__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Hero Columns */
.hero__col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero__col--title {
    text-align: left;
}

.hero__col--description {
    text-align: left;
    align-self: end;
}

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

.hero__col--image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Hero Elements */
.hero__logo {
    margin-bottom: 1.5rem;
}

.hero__logo-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.hero__title {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: white;
}

.hero__description {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__text-content {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    color: white;
}

.hero__text-content p {
    margin-bottom: 1.5rem;
    opacity: 1;
}

.hero__text-content p:last-child {
    margin-bottom: 0;
}

.hero__text-highlight {
    font-weight: 500;
}

.hero__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.hero__image-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* About Section */
.about__container {
    display: grid;
    gap: 3rem;
}

.about__content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about__info {
    max-width: 800px;
    text-align: center;
}

.about__info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Big Numbers Section */
.big-numbers {
    background-color: #ffffff;
}

.big-numbers__layout {
    display: grid;
    grid-template-columns: 28% 72%;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.big-numbers__layout::before {
    content: '';
    position: absolute;
    left: calc(28% + 2rem);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.big-numbers__intro-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.big-numbers__intro {
    font-size: 1.6rem;
    color: #494949;
    text-align: left;
    margin: 0;
}

.big-numbers__intro-highlight {
    font-weight: 600;
}

.big-numbers__content-col {
    display: flex;
    flex-direction: column;
}

.big-numbers__container {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    gap: 1.6rem;
    height: 100%;
}

.big-number__item {
    text-align: left;
}

.big-number__value {
    font-size: 2.8rem;
    font-weight: 400;
    color: #03239C;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.big-number__label {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.4;
    text-align: left;
    margin: 0;
}

.big-numbers__cta {
    text-align: center;
    margin-top: 0;
}

/* Competências Section */
.competencias-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.competencias-section .container {
    background: url('images/bg-banner.png') center center / cover no-repeat;
    border-radius: 16px;
    padding: 4rem;
    position: relative;
    box-shadow: 0px 125px 35px 0px rgba(0, 0, 0, 0.00), 0px 80px 32px 0px rgba(0, 0, 0, 0.01), 0px 45px 27px 0px rgba(0, 0, 0, 0.05), 0px 20px 20px 0px rgba(0, 0, 0, 0.09), 0px 5px 11px 0px rgba(0, 0, 0, 0.10);
}

.competencias-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 22, 79, 0.4);
    border-radius: 16px;
    z-index: 1;
}

.competencias-section__layout {
    position: relative;
    z-index: 2;
}

.competencias-section__layout {
    display: flex;
    width: 100%;
    gap: 3rem;
    align-items: center;
}

.competencias-section__title-col {
    flex: 0 0 40%;
    padding-right: 1.5rem;
}

.competencias-section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.competencias-section__description {
    font-size: 18px;
    font-weight: 400;
    color: #DEDEDE;
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

.competencias-section__cta {
    display: inline-block;
    background-color: #C3DF3B;
    color: #031038;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 56px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.competencias-section__cta:hover {
    background-color: #a8c330;
    transform: translateY(-2px);
}

.competencias-section__content-col {
    flex: 0 0 60%;
    padding-left: 1.5rem;
}

.competencias-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.competencias-section__item {
    font-size: 16px;
    font-weight: 400;
    color: #DEDEDE;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.competencias-section__item::before {
    content: "•";
    color: #C3DF3B;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.competencias-section__item:last-child {
    margin-bottom: 0;
}

/* AI Agents Section */
.ai-agents {
    background-color: #fafafa;
}

.ai-agents__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: end;
    margin-bottom: 3rem;
}

.ai-agents__header-col {
    display: flex;
    flex-direction: column;
}

.ai-agents__header-col .section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #03239C;
    margin-bottom: 0 !important;
    margin: 0;
    line-height: 3rem;
}

.ai-agents__intro {
    font-size: 16px;
    color: #494949;
    text-align: left;
    margin: 0;
    line-height: 1.6;
}

.ai-agents__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-agent__card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    transition: var(--transition);
    text-align: left;
}

.ai-agent__card:hover {
    transform: translateY(-5px);
    border-color: #B0B0B0;
}

.ai-agent__icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 4rem 0;
    color: #03239C;
    font-size: 1.75rem;
}

.ai-agent__icon--image {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

/* Largura específica para Meta Ventures */
.ai-agent__icon--image:has(img[src="images/meta-ventures-icon.png"]) {
    width: 185px;
}

/* Largura específica para Ane */
.ai-agent__icon--image:has(img[src="images/ane-icon.png"]) {
    width: 80px;
}

/* Largura específica para Alex */
.ai-agent__icon--image:has(img[src="images/alex-icon.png"]) {
    width: 80px;
}

/* Chat Section */
.chat-section {
    background: #ffffff;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.chat-section__layout {
    display: grid;
    grid-template-columns: 23% 65%;
    gap: 8rem;
    align-items: flex-start;
    width: 100%;
}

.chat-section__header-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-section__header-col .section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #03239C;
    margin: 0;
    text-align: left;
}

.chatbot-info-box {
    border: 1px solid #DDDCDC;
    border-radius: 8px;
    padding: 1rem;
}

.chatbot-info-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1rem;
    align-items: center;
}

.chatbot-info-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-info-text {
    display: flex;
    align-items: center;
}

.chatbot-info-text p {
    font-size: 16px;
    color: #494949;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.chatbot-info-text strong {
    font-weight: 700;
}

.chat-section__content-col {
    display: flex;
    justify-content: center;
}

/* Dúvidas Section */
.duvidas-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.duvidas-section__layout {
    display: grid;
    grid-template-columns: 25% 70%;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
}

.duvidas-section__header-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.duvidas-section__header-col .section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #03239C;
    margin: 0;
    text-align: left;
}

.duvidas-section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

.duvidas-section__content-col {
    display: flex;
    justify-content: flex-start;
}

.duvidas-section__boxes {
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 3rem;
    width: 100%;
}

.duvidas-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.duvidas-box__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.duvidas-box__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.duvidas-box__button {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 56px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.duvidas-box__button--primary {
    background-color: #C3DF3B;
    color: #031038;
}

.duvidas-box__button--primary:hover {
    background-color: #a8c330;
    transform: translateY(-2px);
}

.duvidas-box__button--blue {
    background-color: #0032FF;
    color: #ffffff;
}

.duvidas-box__button--blue:hover {
    background-color: #0028cc;
    transform: translateY(-2px);
}

.chat-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ai-agent__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ai-agent__name {
    font-size: 32px;
    font-weight: 400;
    color: #03239C;
    margin-bottom: 1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #D5D5D5;
    padding-bottom: 0.5rem;
}

.ai-agent__subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #292A2A;
    text-transform: uppercase;
}

.ai-agent__description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Previous Editions - Company Logos */
.companies__logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.company__logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 calc(100% / 7);
    width: calc(100% / 7);
    min-height: 180px;
    transition: var(--transition);
    text-align: center;
}

.company__logo-item:hover {
    transform: translateY(-5px);
}

.company__logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-bottom: 1rem;
    height: 80px;
    width: 100%;
}

.company__logo-placeholder span {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.company__logo-img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company__position {
    font-size: 12px;
    font-weight: 400;
    color: #494949;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.3;
}

.company__edition {
    font-size: 18px;
    font-weight: 600;
    color: #494949;
    margin: 0;
    line-height: 1.2;
}

/* Awards Section */
.awards {
    background-color: #001651;
}

.awards__header {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 4rem;
    align-items: end;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.awards__header-col {
    display: flex;
    flex-direction: column;
}

.awards .section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0 !important;
    margin: 0;
    line-height: 3rem;
}

.awards__text-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: end;
}

.awards__intro-text {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: none;
    margin: 0;
    line-height: 1.6;
}

.awards__highlight {
    font-weight: 700;
}

.awards__cta-button {
    display: inline-block;
    background-color: #C3DF3B;
    color: #031038;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 56px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awards__cta-button:hover {
    background-color: #a8c330;
    transform: translateY(-2px);
}

.awards__content {
    display: grid;
    gap: 3rem;
}

.awards__intro {
    text-align: center;
    margin-bottom: 2rem;
}

.awards__intro p {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.awards__benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.benefit__card {
    background: #0031b5;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: left;
}

.benefit__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit__icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 50px 0;
    color: #ffffff;
    font-size: 1.5rem;
}

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

.benefit__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit__description {
    color: #ffffff;
    line-height: 1.6;
}

.awards__cta {
    text-align: center;
    margin-top: 2rem;
}

/* Timeline */
.timeline {
    background-color: #001651 !important;
    background: #001651 !important;
}

.timeline.section {
    background-color: #001651 !important;
    background: #001651 !important;
}

.timeline *,
.timeline *:before,
.timeline *:after {
    transition: none !important;
    animation: none !important;
}

.timeline__circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 20px;
    transform: translateY(-50%) !important;
    z-index: 3;
    transition: none !important;
    animation: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline__circle::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
}

.timeline__header {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    align-items: center;
    margin-bottom: 100px;
}

.timeline__header-col {
    display: flex;
    flex-direction: column;
}

.timeline .section__title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.timeline__subtitle {
    color: #ffffff;
    text-align: left;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.timeline__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 4rem;
    /* height: 120px; */
}

.timeline__line {
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    transform: translateY(-50%);
}

.timeline__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}



.timeline__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 70px;
    width: 100%;
}

.timeline__date-title {
    font-size: 40px;
    font-weight: 400;
    color: #C3DF3B;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.timeline__description {
    font-size: 16px;
    font-weight: 400;
    color: #AEAEAE;
    margin: 0;
    line-height: 1.4;
}

/* Timeline Mobile */
@media (max-width: 768px) {
    .timeline__item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline__date {
        min-width: 100px;
    }
    
    .timeline__content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline__title {
        font-size: 1.125rem;
    }
}




/* Judges Section */
.judges__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.judge__card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.judge__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.judge__avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.judge__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.judge__title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.judge__description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}



/* Partners Section */
.partners__layout {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.partners__layout::before {
    content: '';
    position: absolute;
    left: calc(20% + 1rem);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.partners__header-col {
    display: flex;
    flex-direction: column;
}

.partners__content-col {
    display: flex;
    flex-direction: column;
}

.partners__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
}

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

.partner__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Questions Section */
.questions__layout {
    display: grid;
    grid-template-columns: 23% 77%;
    gap: 4rem;
    align-items: flex-start;
}

.questions__header-col {
    display: flex;
    flex-direction: column;
}

.questions__content-col {
    display: flex;
    flex-direction: column;
}

.questions__boxes {
    display: flex;
    width: 100%;
    gap: 6%;
}

.questions__box {
    flex: 1;
    width: 43%;
    max-width: 43%;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 0;
}

.questions__box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.box__image-space {
    height: 120px;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.box__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.box__divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
}

.questions__cta {
    display: inline-block;
    background-color: #C3DF3B;
    color: #031038;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 56px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    width: auto;
}

.questions__cta:hover {
    background-color: #a8c330;
    transform: translateY(-2px);
}

.questions__cta--dm {
    background-color: #0032FF;
    color: #ffffff;
}

.questions__cta--dm:hover {
    background-color: #002bcc;
    transform: translateY(-2px);
}

/* Info Banner Section */
.info-banner {
    background: url('images/bg-regulamento.png') center center / cover no-repeat;
    padding: 2rem 0;
    position: relative;
}

.info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 50, 255, 0.2);
    z-index: 1;
}

.info-banner .container {
    position: relative;
    z-index: 2;
}

.info-banner__text {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.info-banner__link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.info-banner__link:hover {
    color: #C3DF3B;
}

.questions__agent {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.questions__agent:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.agent__avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.agent__info {
    flex: 1;
}

.agent__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem;
}

.agent__description {
    color: var(--text-light);
    margin: 0;
}

.agent__actions {
    flex-shrink: 0;
}

.agent__chat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.questions__divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.questions__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.divider__text {
    background: var(--bg-color);
    padding: 0 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.questions__alternative {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.questions__alternative:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.alternative__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 1rem;
}

.alternative__description {
    color: var(--text-light);
    margin: 0 0 1.5rem;
}

.alternative__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.alternative__actions .button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Chat Section Mobile */
@media (max-width: 968px) {
    .chat-section__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chat-section__header-col .section__title {
        text-align: center;
        font-size: 2rem;
    }
    
    .chatbot-info-layout {
        grid-template-columns: 1fr 2fr;
        gap: 0.75rem;
    }
    
    .chatbot-avatar {
        width: 50px;
        height: 50px;
    }
    
    .chatbot-info-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chat-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .chat-section__layout {
        gap: 1.5rem;
    }
    
    .chatbot-info-box {
        padding: 0.75rem;
    }
    
    .chatbot-info-layout {
        gap: 0.5rem;
    }
    
    .chatbot-avatar {
        width: 40px;
        height: 40px;
    }
    
    .chatbot-info-text p {
        font-size: 13px;
    }
    
    .chat-container {
        height: 400px;
    }
}

/* Questions Mobile */
@media (max-width: 768px) {
    .questions__agent {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .alternative__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .alternative__actions .button {
        width: 100%;
        max-width: 200px;
    }
}

/* Regulations Section */
.regulations__content {
    max-width: 800px;
    margin: 0 auto;
}

.regulations__main {
    display: grid;
    gap: 2rem;
}

.regulations__document {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.regulations__document:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.document__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.document__info {
    flex: 1;
}

.document__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem;
}

.document__description {
    color: var(--text-light);
    margin: 0;
}

.document__actions {
    flex-shrink: 0;
}

.document__actions .button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.regulations__highlights {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.highlights__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 1.5rem;
}

.highlights__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.highlights__list li:last-child {
    border-bottom: none;
}

.highlights__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Regulations Mobile */
@media (max-width: 768px) {
    .regulations__document {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .document__actions .button {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ Section */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-md);
}

.faq__question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--bg-light);
}

.faq__question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq__question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq__answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #FAFAFA;
    color: #494949;
    padding: 5rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__info {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer__logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer__logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer__logo p {
    color: #494949;
    font-size: 0.9rem;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__link {
    color: #494949;
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: #03239C;
}

.footer__social {
    display: flex;
    gap: 0.5rem;
}

.social__link {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.social__logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 80%;
}

.message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message.assistant .message-avatar {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.message.user .message-avatar {
    background: #f1f5f9;
    color: #1f2937;
}

.message-content {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 12px;
    color: #1f2937;
}

.message.user .message-content {
    background: #2563eb;
    color: white;
}

.message-content p {
    margin-bottom: 8px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 8px 0 8px 20px;
}

.message-content li {
    margin-bottom: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 12px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-input-container {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f1f5f9;
}

.chat-input {
    display: flex;
    gap: 12px;
}

.chat-input input {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    padding: 12px 16px;
    border-radius: 8px;
    transition: 0.2s ease;
}

.chat-input input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.chat-input button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
    min-width: 48px;
}

.chat-input button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.chat-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Scrollbar personalizada */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}

.typing-indicator {
    display: flex;
    gap: 12px;
    max-width: 85%;
    opacity: 0.7;
}

.typing-indicator .message-content {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #6b7280;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Scrollbar customization */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(73, 73, 73, 0.2);
    text-align: left;
}

.footer__copy {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

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

.footer__copy a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: var(--transition);
        padding: 6rem 2rem 2rem;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.125rem;
        color: #03239C;
        padding: 0.5rem 0;
        height: auto;
    }
    
    .nav__item {
        height: auto;
    }

    .nav__close,
    .nav__toggle {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__logo-img {
        max-height: 80px;
    }

    .hero__brand {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1.25rem;
        padding: 0 1rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__container {
        padding-top: 5rem !important;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__stats {
        grid-template-columns: 1fr 1fr;
    }

    .big-numbers__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .big-numbers__layout::before {
        display: none;
    }
    
    .big-numbers__intro {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .big-numbers__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
        text-align: center;
    }

    .big-number {
        text-align: center;
    }
    
    .big-number__item {
        text-align: center;
    }
    
    .big-number__value {
        text-align: center;
    }
    
    .big-number__label {
        text-align: center;
    }
    
    .big-number__value {
        font-size: 32px;
    }

    .big-number__value {
        font-size: 3rem;
    }

    .big-number__unit {
        font-size: 1.25rem;
    }

    .competencias-section__layout {
        flex-direction: column;
        gap: 2rem;
    }

    .competencias-section__title-col {
        flex: none;
        padding-right: 0;
    }

    .competencias-section__content-col {
        flex: none;
        padding-left: 0;
    }

    .competencias-section__title {
        font-size: 2rem;
    }

    .competencias-section__description {
        font-size: 16px;
    }

    .competencias-section__item {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .competencias-section .container {
        padding: 2rem;
    }

    .ai-agents__header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .ai-agents__intro {
        text-align: center;
    }
    
    .ai-agents__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ai-agent__card {
        padding: 2rem 1.5rem;
    }

    .ai-agent__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .companies__logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .company__logo-item {
        flex: none;
        width: 100%;
        min-height: auto;
    }

    .company__logo-placeholder {
        width: 140px;
        height: 60px;
    }

    .awards__header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .awards__text-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }

    .awards .section__title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .awards__intro-text {
        font-size: 1rem;
    }

    .awards__benefits {
        grid-template-columns: 1fr;
    }

    .timeline__header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .timeline .section__title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .timeline__subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .timeline__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
        padding: 2rem 0;
        position: relative;
    }

    .timeline__container::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.3);
        z-index: 1;
    }

    .timeline__line {
        display: none;
    }

    .timeline__item {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        padding: 0 0 0 4rem;
    }

    .timeline__circle {
        position: absolute;
        left: 0;
        top: 0;
        transform: none;
        width: 24px;
        height: 24px;
    }

    .timeline__circle::before {
        width: 8px;
        height: 8px;
    }

    .timeline__content {
        flex: 1;
        margin-top: 0;
        text-align: left;
    }

    .timeline__date-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .timeline__description {
        font-size: 0.875rem;
    }

    .partners__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .partners__layout::before {
        display: none;
    }

    .partners__grid {
        flex-direction: column;
        gap: 2rem;
    }

    .partner__item {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .duvidas-section__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .duvidas-section__boxes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .questions__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .questions__boxes {
        flex-direction: column;
        gap: 2rem;
    }

    .questions__box {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer__info {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__links {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        text-align: center;
    }

    .footer__copy {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .award__amount {
        flex-direction: column;
        gap: 0;
    }

    .award__currency {
        font-size: 1.5rem;
    }

    .award__value {
        font-size: 3rem;
    }

    .editions__tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab__button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .companies__grid {
        grid-template-columns: 1fr;
    }

    .judges__grid,
    .partners__grid {
        grid-template-columns: 1fr;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

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

/* Timeline specific override to prevent all animations */
.timeline *,
.timeline *::before,
.timeline *::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.timeline .timeline__item,
.timeline .timeline__item.fade-in-up,
.timeline .timeline__content,
.timeline .timeline__content.fade-in-up,
.timeline .timeline__date-title,
.timeline .timeline__date-title.fade-in-up,
.timeline .timeline__description,
.timeline .timeline__description.fade-in-up,
.timeline .section__title,
.timeline .timeline__subtitle {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.timeline__circle {
    transform: translateY(-50%) !important;
}

/* Gradient definitions for SVG */
svg defs {
    display: block;
}

#gradient stop:first-child {
    stop-color: var(--primary-color);
    stop-opacity: 0.8;
}

#gradient stop:last-child {
    stop-color: var(--secondary-color);
    stop-opacity: 0.6;
}

/* Hero Responsive Styles */
@media (max-width: 968px) {
    .hero__row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__title {
        font-size: 4rem;
        font-weight: 300;
    }
    
    .hero__description {
        font-size: 1.125rem;
    }
    
    .hero__text-content {
        font-size: 16px;
        font-weight: 300;
    }
    
    .hero__col--title,
    .hero__col--description,
    .hero__col--text {
        text-align: center;
    }
    
    .hero__col--description {
        align-self: center;
    }
    
    .hero__image-img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .hero__container {
        gap: 2rem;
    }
    
    .hero__row--first,
    .hero__row--second {
        margin: 0;
    }
    
    .hero__title {
        font-size: 3rem;
        font-weight: 300;
    }
    
    .hero__logo-img {
        max-height: 60px;
    }
}
