/* Importar fuentes Satoshi */
@import url('./Satoshi_Complete/Fonts/WEB/css/satoshi.css');

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0D0D0D;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo .logo {
    height: 56px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Satoshi-Variable', 'Satoshi', 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #2B7B9E;
}

.nav-link:hover {
    color: #2B7B9E;
}

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    height: 24px;
    width: 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('fondo-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 46px;
}

.title-main {
    display: block;
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 66.325px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -2.653px;
    margin-bottom: 10px;
}

.title-italic {
    display: block;
    color: #FFF;
    font-family: "Instrument Serif", serif;
    font-size: 66.325px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
}

.hero-description {
    color: #AAA;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 20px;
    font-style: normal;
    line-height: 140%;
    margin-bottom: 116px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    padding: 15.813px 24.599px;
    justify-content: center;
    align-items: center;
    gap: 8.785px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #2B7B9E;
    color: #fff;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.btn-visibility {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 87.852px;
    background: #0577FD;
    color: #FFF;
    font-family: 'Satoshi', sans-serif;
    font-size: 14.056px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding: 15px 28px;
}

.btn-visibility .icono-boton {
    width: 14px;
    height: 14px;
    margin-left: 8px;
}

.btn-llamada {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 87.852px;
    background: #FFF;
    color: #15313D;
    font-family: 'Satoshi', sans-serif;
    font-size: 14.056px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding: 15px 28px;
}

.btn-llamada .icono-boton-llamada {
    width: 14px;
    height: 14px;
    margin-left: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 0;
    }

    .nav-menu .nav-link {
        font-size: 24px;
        font-weight: 500;
        color: #FFF;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: linear-gradient(to right, #FD0C1F 0%, #FE3B1D 10%, #FE800F 20%, #FFCB00 30%, #A8D15B 40%, #4DD7BA 50%, #0DDBFD 60%, #05A7FF 70%, #0043E9 80%, #0F01C6 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 100%;
        height: 2px;
        background: #FFF;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-social {
        display: none;
    }

    .nav-social.mobile {
        display: flex;
        gap: 20px;
        margin-top: 40px;
    }

    .nav-social.mobile .social-link img {
        width: 24px;
        height: 24px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .title-main,
    .title-italic {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 18px;
        padding: 0 20px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .nav-logo .logo {
        height: 46px;
    }

    .hero-title {
        margin-top: 46px;
    }
}

@media (max-width: 480px) {
    .title-main,
    .title-italic {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

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

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

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Initial states for animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
}

/* Stats Section */
.stats-section {
    background: #0D0D0D;
    padding: 80px 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.stats-title {
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin: 0;
}

.stats-highlight {
    background: linear-gradient(to right, #FD0C1F 0%, #FE3B1D 10%, #FE800F 20%, #FFCB00 30%, #A8D15B 40%, #4DD7BA 50%, #0DDBFD 60%, #05A7FF 70%, #0043E9 80%, #0F01C6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
}

/* Responsive para Stats Section */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-title {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .stats-highlight {
        font-size: 28px;
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }
    
    .stats-highlight {
        font-size: 24px;
        letter-spacing: -0.8px;
    }
    
    .stats-container {
        padding: 0 15px;
    }
}

/* Features Section */
.features-section {
    background: #0D0D0D;
    padding: 80px 0 0 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-text {
    padding: 0 38px;
}

.feature-column:first-child {
    position: relative;
}

.feature-column:first-child::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 0;
    width: 1px;
    height: calc(100% + 80px);
    background: #313131;
}

.feature-title {
    color: #FFF;
    text-align: left;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin: 0;
}

.feature-subtitle {
    color: #828282;
    text-align: left;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 22px;
    font-style: normal;
    line-height: 140%;
    letter-spacing: -0.88px;
    margin: 0;
}

.feature-illustration {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    min-height: 385.895px;
}

.feature-image {
    height: 385.895px;
    margin-left: auto;
    display: block;
    align-self: flex-end;
}

.feature-image.globo {
    position: relative;
    top: 30px;
}

/* Responsive para Features Section */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-text {
        padding: 0 20px;
    }
    
    .feature-column:first-child {
        border-right: none;
        border-bottom: 1px solid #313131;
        padding-bottom: 50px;
    }
    
    .feature-column:first-child::after {
        display: none;
    }
    
    .feature-title {
        font-size: 24px;
        letter-spacing: -0.9px;
    }
    
    .feature-subtitle {
        font-size: 18px;
        letter-spacing: -0.7px;
    }
    
    .feature-illustration {
        min-height: 250px;
        margin-top: 30px;
    }
    
    .feature-image {
        max-width: 100%;
        object-fit: contain;
    }
    
    .feature-image.globo {
        top: 20px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-content {
        gap: 40px;
    }
    
    .feature-text {
        padding: 0 15px;
    }
    
    .feature-title {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .feature-subtitle {
        font-size: 16px;
        letter-spacing: -0.6px;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .feature-column:first-child {
        padding-bottom: 40px;
    }
    
    .feature-illustration {
        min-height: 200px;
        margin-top: 20px;
    }
    
    .feature-image {
        max-width: 100%;
        object-fit: contain;
    }
    
    .feature-image.globo {
        top: 15px;
        margin-left: 0;
    }
}

/* AI Visibility Score Section */
.visibility-section {
    background: #0D0D0D;
    padding: 80px 10px 10px 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.visibility-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.visibility-content {
    text-align: left;
}

.visibility-title {
    color: #FFF;
    text-align: left;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin: 0 0 20px 0;
}

.visibility-subtitle {
    color: #828282;
    text-align: left;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 22px;
    font-style: normal;
    line-height: 140%;
    letter-spacing: -0.88px;
    margin: 0 0 60px 0;
}

.score-cards {
    display: flex;
    position: relative;
    margin: 0 auto;
    height: 222px;
}

.score-card {
    background: transparent;
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 16px;
    position: absolute;
}

.card-91 {
    bottom: 60px;
    left: 60px;
}

.card-77 {
    bottom: 38px;
    right: 10px;
}

.card-29 {
    bottom: 140px;
    left: 390px;
}

.card-14 {
    top: -20px;
    right: 100px;
}

.score-card.gradient-border {
    background: linear-gradient(45deg, #FD0C1F, #FE3B1D, #FE800F, #FFCB00, #A8D15B, #4DD7BA, #0DDBFD, #05A7FF, #0043E9, #0F01C6);
    border-radius: 10px;
    padding: 1px;
}

.score-card.gradient-border .card-content {
    background: #0D0D0D;
    border-radius: 9px;
    padding: 16px;
    height: 100%;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.card-brand {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: inline;
    margin-right: 10px;
}

.card-score {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.score-percentage {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 19.469px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.779px;
}

.score-percentage.yellow {
    color: #FFCB00;
}

.score-percentage.green {
    background: linear-gradient(to right, #FD0C1F 0%, #FE3B1D 10%, #FE800F 20%, #FFCB00 30%, #A8D15B 40%, #4DD7BA 50%, #0DDBFD 60%, #05A7FF 70%, #0043E9 80%, #0F01C6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.score-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
}

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

/* Responsive para Visibility Section */
@media (max-width: 768px) {
    .score-cards {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .score-card {
        position: relative;
        width: 100%;
        max-width: 300px;
    }
    
    .card-14,
    .card-29,
    .card-77,
    .card-91 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    
    .visibility-title {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .visibility-subtitle {
        font-size: 18px;
        letter-spacing: -0.7px;
    }
}

@media (max-width: 480px) {
    .visibility-section {
        padding: 40px 0;
    }
    
    .visibility-title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }
    
    .visibility-subtitle {
        font-size: 16px;
        letter-spacing: -0.6px;
    }
    
    .visibility-container {
        padding: 0 15px;
    }
    
    .score-cards {
        gap: 15px;
    }
}

/* Process Section */
.process-section {
    background: #0D0D0D;
    padding: 80px 0 0 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-text {
    padding: 0 38px;
}

.process-column:first-child {
    position: relative;
}

.process-column:first-child::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 0;
    width: 1px;
    height: calc(100% + 80px);
    background: #313131;
}

.process-title {
    color: #FFF;
    text-align: left;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin: 0;
}

.process-subtitle {
    color: #828282;
    text-align: left;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 22px;
    font-style: normal;
    line-height: 140%;
    letter-spacing: -0.88px;
    margin: 0;
}

.process-illustration {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    min-height: 385.895px;
}

.process-image {
    height: 385.895px;
    display: block;
    align-self: flex-end;
}

.process-image.triangle {
    position: relative;
    top: 30px;
    height: 331px;
}

/* Responsive para Process Section */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-text {
        padding: 0 20px;
    }
    
    .process-column:first-child {
        border-right: none;
        border-bottom: 1px solid #313131;
        padding-bottom: 50px;
    }
    
    .process-column:first-child::after {
        display: none;
    }
    
    .process-title {
        font-size: 24px;
        letter-spacing: -0.9px;
    }
    
    .process-subtitle {
        font-size: 18px;
        letter-spacing: -0.7px;
    }
    
    .process-illustration {
        min-height: 250px;
        margin-top: 30px;
    }
    
    .process-image {
        height: 250px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .process-image.triangle {
        top: 20px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 40px 0;
    }
    
    .process-content {
        gap: 40px;
    }
    
    .process-text {
        padding: 0 15px;
    }
    
    .process-title {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .process-subtitle {
        font-size: 16px;
        letter-spacing: -0.6px;
    }
    
    .process-container {
        padding: 0 15px;
    }
    
    .process-column:first-child {
        padding-bottom: 40px;
    }
    
    .process-illustration {
        min-height: 200px;
        margin-top: 20px;
    }
    
    .process-image {
        max-width: 100%;
        object-fit: contain;
    }
    
    .process-image.triangle {
        top: 15px;
    }
} 

/* CTA Section */
.cta-section {
    background: #0D0D0D;
    padding: 80px 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 46px;
}

.cta-main {
    display: block;
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 66.325px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -2.653px;
    margin-bottom: 10px;
}

.cta-italic {
    display: block;
    color: #FFF;
    font-family: "Instrument Serif", serif;
    font-size: 66.325px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive para CTA Section */
@media (max-width: 768px) {
    .cta-main,
    .cta-italic {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-main,
    .cta-italic {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .cta-container {
        padding: 0 15px;
    }
}

/* Logos Section */
.logos-section {
    background: #0D0D0D;
    padding: 60px 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logos-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.logos-title {
    text-align: center;
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin-bottom: 60px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-image {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 1;
}

/* Responsive para la sección de logos */
@media (max-width: 768px) {
    .logos-section {
        padding: 80px 0;
    }
    
    .logos-title {
        font-size: 24px;
        letter-spacing: -0.9px;
        margin-bottom: 40px;
    }
    
    .logos-grid {
        gap: 40px;
    }
    
    .logo-image {
        max-width: 100px;
    }
    
    .logos-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logos-section {
        padding: 60px 0;
    }
    
    .logos-title {
        font-size: 20px;
        letter-spacing: -0.8px;
        margin-bottom: 30px;
    }
    
    .logos-grid {
        gap: 30px;
    }
    
    .logo-image {
        max-width: 80px;
    }
    
    .logos-container {
        padding: 0 20px;
    }
    
    .logos-content {
        padding: 0 15px;
    }
}

/* About Us Section */
.about-section {
    background: #0D0D0D;
    padding: 80px 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin-bottom: 20px;
}

.about-subtitle {
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin-bottom: 30px;
}

.about-description {
    color: #828282;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.88px;
    max-width: 800px;
    margin: 0 auto;
}

.team-section {
    margin-bottom: 80px;
}

.team-title {
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.team-member {
    border: 1px solid #313131;
    border-radius: 10px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-name {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin: 0;
}

.member-role {
    background: linear-gradient(to right, #FD0C1F 0%, #FE3B1D 10%, #FE800F 20%, #FFCB00 30%, #A8D15B 40%, #4DD7BA 50%, #0DDBFD 60%, #05A7FF 70%, #0043E9 80%, #0F01C6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.72px;
    margin: 0;
}

.member-bio {
    color: #828282;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
    margin: 0;
}

.member-philosophy {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
    margin: 0;
}

.member-linkedin {
    color: #2B7B9E;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.32px;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.member-linkedin:hover {
    color: #FFF;
}

.philosophy-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 0;
    border-top: 1px solid #313131;
    border-bottom: 1px solid #313131;
}

.philosophy-title {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin-bottom: 30px;
}

.philosophy-quote {
    color: #FFF;
    font-family: "Instrument Serif", serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.96px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}


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

.contact-title {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.12px;
    margin-bottom: 20px;
}

.contact-email {
    background: linear-gradient(to right, #FD0C1F 0%, #FE3B1D 10%, #FE800F 20%, #FFCB00 30%, #A8D15B 40%, #4DD7BA 50%, #0DDBFD 60%, #05A7FF 70%, #0043E9 80%, #0F01C6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.96px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #FFF;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive para About Us Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    .about-subtitle {
        font-size: 22px;
        letter-spacing: -0.88px;
    }
    
    .about-description {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member {
        padding: 30px;
    }
    
    .member-name {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .member-role {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
    
    .philosophy-quote {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .philosophy-quote::before {
        font-size: 36px;
        top: -15px;
        left: -20px;
    }
    
    .contact-email {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    
    .about-subtitle {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    
    .about-description {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
    
    .team-title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-name {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    
    .member-role {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
    
    .member-bio,
    .member-philosophy {
        font-size: 14px;
        letter-spacing: -0.28px;
    }
    
    .philosophy-section {
        padding: 40px 0;
    }
    
    .philosophy-title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }
    
    .philosophy-quote {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    
    .philosophy-quote::before {
        font-size: 28px;
        top: -10px;
        left: -15px;
    }
    
    .contact-title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }
    
    .contact-email {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
}

/* Terms and Conditions Section */
.terms-section {
    background: #0D0D0D;
    padding: 80px 0;
    border-bottom: 1px solid #313131;
    border-left: 1px solid #313131;
    border-right: 1px solid #313131;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.terms-title {
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.44px;
    margin: 0;
}

.terms-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.term-item {
    border-bottom: 1px solid #313131;
    padding-bottom: 40px;
}

.term-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.term-number {
    background: linear-gradient(to right, #FD0C1F 0%, #FE3B1D 10%, #FE800F 20%, #FFCB00 30%, #A8D15B 40%, #4DD7BA 50%, #0DDBFD 60%, #05A7FF 70%, #0043E9 80%, #0F01C6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin-bottom: 20px;
}

.term-subtitle {
    color: #FFF;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.72px;
    margin: 25px 0 15px 0;
}

.term-text {
    color: #828282;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
    margin-bottom: 15px;
}

.term-text:last-child {
    margin-bottom: 0;
}

.term-list {
    color: #828282;
    font-family: 'Satoshi-Variable', 'Satoshi', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
    margin: 15px 0;
    padding-left: 20px;
}

.term-list li {
    margin-bottom: 8px;
}

.term-list li:last-child {
    margin-bottom: 0;
}

/* Responsive para Terms Section */
@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }
    
    .terms-title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }
    
    .term-number {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .term-subtitle {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
    
    .term-text,
    .term-list {
        font-size: 14px;
        letter-spacing: -0.28px;
    }
    
    .terms-body {
        gap: 30px;
    }
    
    .term-item {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-container {
        padding: 0 15px;
    }
    
    .terms-title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }
    
    .term-number {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    
    .term-subtitle {
        font-size: 14px;
        letter-spacing: -0.56px;
    }
    
    .term-text,
    .term-list {
        font-size: 13px;
        letter-spacing: -0.26px;
    }
    
    .terms-body {
        gap: 25px;
    }
    
    .term-item {
        padding-bottom: 25px;
    }
    
    .term-list {
        padding-left: 15px;
    }
}

/* Footer */
.footer {
    background: #0D0D0D;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.footer-icon {
    width: 56px;
    height: 59px;
}

.footer-brand {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

.footer-copyright {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-link {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.footer-divider {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Responsive para Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    .footer-right {
        gap: 12px;
    }
    
    .footer-link,
    .footer-divider {
        font-size: 14px;
    }
} 