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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E5E7;
}

.navbar {
    padding: 1rem 2rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

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

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1D1D1F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #0066CC;
}

.navbar-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: #0066CC;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-cta:hover {
    opacity: 0.9;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1D1D1F;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .navbar-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid #E5E5E7;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-cta.active {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
}

.hero {
    position: relative;
    min-height: 70vh;
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-top: 80px;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    max-width: 600px;
}

.clients-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.clients-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.clients-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.consultor-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    display: inline-block;
    text-decoration: none;
}

.consultor-btn:hover {
    opacity: 0.9;
}

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 500px;
    text-align: right;
}

@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-right {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-description {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 1.5rem;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .clients-text {
        font-size: 1.2rem;
    }

    .clients-image {
        height: 30px;
    }

    .consultor-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

.partners-section {
    background-color: #FFF;
    padding: 5rem 2rem;
}

.partners-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.partners-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0066CC;
    max-width: 600px;
}

.partners-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partners-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkmark-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.partners-item span {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1D1D1F;
    padding-top: 0.5rem;
}

.partners-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #0066CC;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    display: inline-block;
    text-decoration: none;
}

.partners-btn:hover {
    opacity: 0.9;
}

.partners-right {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.stats-card {
    background-color: #F5F5F7;
    padding: 2rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stats-icon {
    width: 48px;
    height: 48px;
    color: #0066CC;
    margin-bottom: 1rem;
}

.stats-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.stats-label {
    font-size: 1rem;
    color: #1D1D1F;
    line-height: 1.5;
}

.partners-footer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    color: #1D1D1F;
    line-height: 1.6;
    padding-top: 2rem;
}

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

    .partners-title {
        font-size: 2rem;
    }

    .partners-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-card {
        flex: 0 1 auto;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 1.5rem;
    }

    .partners-title {
        font-size: 1.75rem;
    }

    .partners-item span {
        font-size: 1rem;
    }

    .checkmark-icon {
        width: 35px;
        height: 35px;
    }

    .partners-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .stats-card {
        min-width: 100%;
    }

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

    .partners-footer {
        font-size: 0.9rem;
    }
}

.portfolio-section {
    background: #4F185A;
    padding: 5rem 2rem;
    color: #fff;
}

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

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.portfolio-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.portfolio-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 0.5rem;
    grid-auto-flow: dense;
}

.portfolio-card {
    backdrop-filter: blur(10px);
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-card-large {
    border-radius: 4px;
}

.portfolio-card-medium {
    border-radius: 4px;
}

.portfolio-card-small {
    border-radius: 4px;
}

.portfolio-card-wide {
    border-radius: 4px;

}

.portfolio-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-card-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-card-wide {
    grid-column: span 4;
    grid-row: span 1;
}

.portfolio-card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.portfolio-card-title-small {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.portfolio-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    opacity: 0.95;
    margin: 0;
}

.portfolio-card-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.portfolio-card-stats {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
}

.portfolio-sub-card {
    flex: 1;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-sub-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}

.portfolio-sub-card-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1024px) {
    .portfolio-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .portfolio-card-medium {
        grid-column: span 2;
    }

    .portfolio-card-small {
        grid-column: span 1;
    }

    .portfolio-card-wide {
        grid-column: span 2;
    }

    .portfolio-title {
        font-size: 2.5rem;
    }

    .portfolio-subtitle {
        font-size: 1.75rem;
    }

    .portfolio-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 3rem 1.5rem;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-subtitle {
        font-size: 1.5rem;
    }

    .portfolio-intro {
        font-size: 1rem;
    }

    .portfolio-cards-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card-large,
    .portfolio-card-medium,
    .portfolio-card-small,
    .portfolio-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-card-title {
        font-size: 1.75rem;
    }

    .portfolio-card-title-small {
        font-size: 1.2rem;
    }

    .portfolio-card-stat-number {
        font-size: 1.75rem;
    }

    .portfolio-card-stats {
        flex-direction: column;
    }

    .portfolio-sub-card-number {
        font-size: 1.75rem;
    }
}

.possibilities-section {
    padding: 5rem 2rem;
    background-color: #FFF;
}

.possibilities-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.possibilities-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.possibilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.possibilities-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.possibilities-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0066CC;
    margin: 0;
}

.possibilities-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1D1D1F;
    margin: 0;
}

.possibilities-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1D1D1F;
    margin: 0;
}

.possibilities-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #0066CC;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
    display: inline-block;
    text-decoration: none;
}

.possibilities-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .possibilities-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .possibilities-image {
        order: 2;
    }

    .possibilities-content {
        order: 1;
    }

    .possibilities-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .possibilities-section {
        padding: 3rem 1.5rem;
    }

    .possibilities-title {
        font-size: 2rem;
    }

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

    .possibilities-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

.journey-section {
    padding: 5rem 2rem;
    background: #4F185A;
    color: #fff;
}

.journey-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.journey-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}

.journey-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin: 0;
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.journey-card {
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journey-card:nth-child(1) {
    border-radius: 4px;
}

.journey-card:nth-child(2) {
    border-radius: 4px;
}

.journey-card:nth-child(3) {
    border-radius: 4px;
}

.journey-card-icon {
    width: 64px;
    height: 64px;
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.journey-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.journey-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    opacity: 0.9;
}

.journey-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.journey-footer-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    max-width: 800px;
}

.journey-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #0066CC;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.journey-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .journey-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 3rem 1.5rem;
    }

    .journey-title {
        font-size: 2rem;
    }

    .journey-card {
        padding: 2rem;
    }

    .journey-card-icon {
        width: 56px;
        height: 56px;
    }

    .journey-card-title {
        font-size: 1.3rem;
    }

    .journey-footer-text {
        font-size: 1.1rem;
    }

    .journey-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

.career-paths-section {
    padding: 5rem 2rem;
    background-color: #FFF;
}

.career-paths-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.career-paths-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0066CC;
    margin: 0;
    text-align: center;
}

.career-paths-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1D1D1F;
    text-align: center;
    margin: 0;
}

.career-paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.career-path-card {
    background-color: #F5F5F7;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.career-path-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.career-path-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career-path-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.career-path-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1D1D1F;
    margin: 0;
}

.career-path-description {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #0066CC;
    margin: 0;
}

.career-path-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1D1D1F;
    margin: 0;
    opacity: 0.8;
    flex: 1;
}

.career-path-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #0066CC;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
    display: inline-block;
    text-decoration: none;
}

.career-path-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .career-paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .career-paths-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .career-paths-section {
        padding: 3rem 1.5rem;
    }

    .career-paths-title {
        font-size: 2rem;
    }

    .career-path-content {
        padding: 1.5rem;
    }

    .career-path-title {
        font-size: 1.3rem;
    }

    .career-path-image {
        height: 200px;
    }
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #4F185A;
    margin-top: 80px;
}

.contact-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0066CC;
    margin: 0;
    display: block;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1rem 0;
}

.contact-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.8;
    margin: 0;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1D1D1F;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid #E5E5E7;
    border-radius: 4px;
    background-color: #fff;
    color: #1D1D1F;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #1D1D1F;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0066CC;
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #0066CC;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer {
    background-color: #fff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #E5E5E7;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E5E5E7;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: #0066CC;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-cnpj {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1D1D1F;
    margin: 0;
    opacity: 0.7;
    padding-top: 0.5rem;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1D1D1F;
    margin: 0;
}

.footer-address-note {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #1D1D1F;
    opacity: 0.6;
    margin: 0.25rem 0 0 0;
}

.footer-phone {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1D1D1F;
    margin: 0;
}

.footer-links-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 0.95rem;
    color: #1D1D1F;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: #0066CC;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #1D1D1F;
    opacity: 0.6;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-info {
        gap: 1.25rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0066CC;
    margin: 0;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1D1D1F;
    margin: 0;
}

.about-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1D1D1F;
    opacity: 0.8;
    margin: 0;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-section {
    padding: 5rem 2rem;
    background-color: #FFF;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1D1D1F;
    margin: 0 0 2rem 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1D1D1F;
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
}

.about-text-large {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1D1D1F;
    margin: 0;
    opacity: 0.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-value-card {
    background-color: #F5F5F7;
    padding: 2.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.about-value-icon {
    width: 56px;
    height: 56px;
    color: #0066CC;
}

.about-value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0;
}

.about-value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1D1D1F;
    margin: 0;
    opacity: 0.8;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid #E5E5E7;
    border-bottom: 1px solid #E5E5E7;
}

.about-mission-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #4F185A;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.about-cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    margin: 0;
    max-width: 600px;
}

.about-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #fff;
    color: #4F185A;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-top: 1rem;
}

.about-cta-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .about-hero-image {
        height: 300px;
        order: -1;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-mission {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 70px;
        padding: 3rem 1.5rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .about-content-section {
        padding: 3rem 1.5rem;
    }

    .about-container {
        gap: 3rem;
    }

    .about-cta {
        padding: 3rem 1.5rem;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-text {
        font-size: 1.1rem;
    }
}

/* Legal Pages Styles (Privacy Policy, Terms) */
.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background-color: #FFF;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1D1D1F;
    margin: 0 0 1rem 0;
}

.legal-updated {
    font-size: 0.95rem;
    color: #1D1D1F;
    opacity: 0.6;
    margin: 0 0 3rem 0;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.legal-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1D1D1F;
    margin: 0 0 1rem 0;
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #1D1D1F;
    margin: 0 0 1rem 0;
    opacity: 0.8;
}

.legal-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #1D1D1F;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.legal-list li strong {
    font-weight: 600;
    opacity: 1;
}

@media (max-width: 768px) {
    .legal-page {
        margin-top: 70px;
        padding: 3rem 1.5rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-section-title {
        font-size: 1.5rem;
    }

    .legal-content {
        gap: 2rem;
    }
}
