* {
margin: 0;
padding: 0;
box-sizing: border-box;
 }
/* Password: Richam1234@ */
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;  /* ADD THIS */
text-size-adjust: 100%;          /* ADD THIS */
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}
/* Header Styles */
.site-header {
width: 100%;
position: absolute;
top: 0;
left: 0;
padding: 20px 0;
z-index: 1000;
}
.site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
padding: 0 60px;
}
.logo {
height: 85px;
transition: opacity 0.6s ease;
}
.logo.menu-active {
opacity: 0;

}
.logo-white {
position: absolute;
left: 93px;
top: 0px;
height: 53px;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease 0.2s;
z-index: 2004;
}

.logo-white.active {
opacity: 1;
}
.mobile-menu-toggle {
display: none;
}
.nav-menu {
display: flex;
gap: 60px;
}
.nav-menu a {
color: white;
text-decoration: none;
margin-top: -35px;
font-size: 20px;
font-weight: 400;
transition: opacity 0.2s ease;
transform: translateY(1px);
}
.nav-menu a:hover {
opacity: 0.7;
}.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('hero.png') center/cover no-repeat;
  display: flex;              /* REQUIRED */
  flex-direction: column;     
  justify-content: center;    /* vertical center */
  align-items: flex-start !important;    /* horizontal alignment (left) */
  padding-top: 120px;         /* pushes content below nav */
}

/* The light blue + fade effect */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      #F0F8FB 0%, 
      #f0f8fbdf 30%,
      #f0f8fbc1 35%,
      transparent 50%
  ),linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.714) 0%,         /* Completely black at TOP */
      rgba(0, 0, 0, 0.549) 8%,
      rgba(0, 0, 0, 0.137) 12%,
      rgba(0, 0, 0, 0) 16%,
      transparent 0%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  line-height: 1.9rem;
  letter-spacing: -0.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 70px;
  align-items: flex-start !important;
  color: #272C6E;
  height: 100%;
  padding: 0 60px;
  animation: fadeInUp 0.8s ease-out both;
}


.hero-benefits {
display: flex;
flex-direction: column;
gap: 15px !important;
margin-bottom: 25px;
max-width: 540px;
}

.hero-benefit-item {
display: flex;
align-items: flex-start;
gap: 5px;
opacity: 0;
animation: fadeInUp 0.8s ease-out both;
}
.hero-benefit-item:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-benefit-item:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-benefit-item:nth-child(3) {
    animation-delay: 1s;
}

.hero-benefit-item:nth-child(4) {
    animation-delay: 1.2s;
}

.benefit-icon {
width: 20px;
height: 20px;
flex-shrink: 0;
object-fit: contain;
margin-top: 2px;
}

.benefit-text {
color: #272C6E;
font-size: 20px !important;
font-weight: 400;
line-height: 1.1;
letter-spacing: -0.03rem;
margin: 0;
}

.hero-button {
    background-color: #272C6E;
    color: white;
    padding: 8px 15px !important;
    letter-spacing: -0.01rem;
    border: none;
    border-radius: 50px;
    font-size: 18px !important;
    font-weight: 500;  /* Lighter weight */
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;  /* Changed to inline-flex */ /* Centers text horizontally */
    transition: all 0.3s ease;
    border: 1px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s both;
    margin-left: 0 !important;
}

.hero-button:hover {
    background-color: transparent;  /* Change background to white */
    color: #272C6E;  /* Change text to dark blue */
    border: 1px solid #272C6E;  /* Add dark blue border */
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
width: 100%;
height: 140px;
background-color: #161E44;
display: flex;
align-items: center;
justify-content: center;
padding: 0 60px;
}
.stats-container {
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
max-width: none;
}
.stat-column {
display: flex;
align-items: center;
color: white;
gap: 25px;
max-width: 350px;
}
.stat-column:first-child {
justify-content: flex-start;
text-align: center;
}
.stat-column:nth-child(2) {
justify-content: flex-start;
text-align: center;
}
.stat-column:last-child {
justify-content: flex-end;
text-align: center;
}
.stat-icon {
width: 63px;
height: 54px;
flex-shrink: 0;
}
.stat-text {
font-size: 24px;
font-weight: 400;
opacity: 0.9;
}

/* Nosotros Section */
.nosotros-section {
width: 100%;
max-width: 100%;
min-height: 100vh;
height: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
padding: 60px 60px 60px 60px;
overflow: hidden;
background-color: white; 
align-items: center;
}
.nosotros-title {
color: #272C6E;
font-size: 53px;
font-weight: 550;
text-align: center;
line-height: 38px;
margin-bottom: 70px;
letter-spacing: -0.18rem;
}
.suppliers-section{
max-width: 100%; 
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding: 50px 60px 30px 60px;
overflow: hidden;
background-color: white; 
min-height: 350px;
}
.nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 35px; 
    font-size: 33px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}

.nosotros-columns {
display: flex;
gap: 110px;
justify-content: center;
max-width: 100%;
flex-wrap: wrap;
}

.nosotros-column {
display: flex;
flex-direction: column;
align-items: center;
opacity: 0;
flex-shrink: 0;
max-width: 300px;
}

.nosotros-image {
width: 300px;
max-width: 100%;
height: 350px;
object-fit: cover;
transition: transform 0.4s ease;
}
.nosotros-column.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.nosotros-column.visible:nth-child(1) {
    animation-delay: 0.2s;
}

.nosotros-column.visible:nth-child(2) {
    animation-delay: 0.4s;
}

.nosotros-column.visible:nth-child(3) {
    animation-delay: 0.6s;
}

.nosotros-text {
color: #272C6E;
font-size: 24px;
font-weight: 500;
line-height: 24px;
text-align: center;
margin-top: 25px;
max-width: 260px;
letter-spacing: -0.01rem;
}

.nosotros-lines {
width: 300px;
margin-top: 15px;
}

.nosotros-line {
    width: 0;
    height: 1px;
    background-color: #343C98;
    margin-top: 0px;
    /* ADD: */
    transform-origin: left;
}

.nosotros-column.visible:nth-child(1) .nosotros-line {
    animation: lineGrow 0.8s ease-out 0.5s forwards;
}

.nosotros-column.visible:nth-child(2) .nosotros-line {
    animation: lineGrow 0.8s ease-out 0.7s forwards;
}

.nosotros-column.visible:nth-child(3) .nosotros-line {
    animation: lineGrow 0.8s ease-out 0.9s forwards;
}


.nosotros-description {
color: #272C6E;
font-size: 17px;
font-weight: 200;
line-height: 21px;
text-align: center;
margin-top: 13px;
max-width: 280px;
}

.nosotros-description-bold {
font-weight: 400;
}

/* New Section */
.new-section {
width: 100%;
min-height: 400px; 
height: auto;
background-color: #EEEFF7;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 60px 60px 60px;
}

.new-section-content {
width: 100%;
}

.new-section-title {
color: #272C6E;
margin-top: 0px;
font-size: 48px;
font-weight: 550;
text-align: left;
margin-bottom: 40px;
letter-spacing: -0.15rem;
line-height: 3.6rem;
max-width: 1050px;
opacity: 0;
}
.new-section-title.visible {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.two-columns {
    display: flex;
    gap: 50px;
    width: 100%;
    align-items: flex-start;
}

.column-left {
    width: 62%;
}

.column-right {
    width: 38%;
}

/* New column layout classes */
.two-columns-60-40 {
    display: flex;
    gap: 50px;
    width: 100%;
    align-items: flex-start;
    margin-top: 30px;
}

.column-left-60 {
    width: 55%;
}

.column-right-40 {
    width: 45%;
}

/* FAQ Section - CORRECTED */
.faq-section {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 60px 60px 60px;
    overflow: hidden;
}

.faq-title {
    color: #272C6E;
    font-size: 51px;
    font-weight: 550;
    text-align: center;
    margin-bottom: 90px;
    letter-spacing: -0.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
    max-width: 1300px;
    width: 100%;
    justify-items: center;
}


.faq-box.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(39, 44, 110, 0.15);
}

.faq-box.expanded {
    height: auto;
    min-height: 400px;
    justify-content: flex-start;
    padding: 30px 28px;
    box-shadow: 0 12px 30px rgba(39, 44, 110, 0.2);
}

.faq-box {
    width: 100%;
    max-width: 570px;
    height: 260px;
    background-color: #CED4EF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 35px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;  /* Changed from hidden to visible */
    opacity: 0;
    transform: translateY(20px);
}

.faq-question {
    color: #272C6E;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    line-height: 1.3;
    margin-top: 10px;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: manual;
    white-space: normal;
}

.faq-answer {
    color: #272C6E;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    transform: translateY(-10px);
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: manual;
    white-space: normal;
}
.faq-box.expanded .faq-question {
    margin-top: 0;
    margin-bottom: 20px;
}



.faq-box.expanded .faq-answer {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
}
.faq-arrow {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-top: 50px;
    transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-box.expanded .faq-arrow {
    transform: rotate(180deg);
    margin-top: auto;
    margin-bottom: 10px;
}
/* Testimonials Section */
.testimonials-section {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: #EEEFF7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 80px 60px;
    overflow: hidden;
}
.testimonials-title {
    color: #272C6E;
    font-size: 52px;
    font-weight: 550;
    text-align: center;
    margin-bottom: 90px;
    letter-spacing: -0.15rem;
}
.testimonials-wrapper {
    max-width: 1400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 450px;
}
.testimonials-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 200%;
}
.testimonials-grid {
    display: flex;
    gap: 0px;
    width: 50%;
    flex-shrink: 0;
    align-items: stretch;
    position: relative;
    min-height: 450px;
}
.testimonial-column {
    width: 50%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}
.testimonial-divider {
    width: 2px;
    height: 450px;
    background-color: #343a8e;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.testimonial-text {
    color: #42478D;
    font-size: 24px;
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: -0.01rem;
    text-align: left;
    margin-bottom: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.testimonial-company {
    color: #272C6E;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    min-height: 10px;
    display: flex;
    align-items: flex-end;
}
.testimonial-name {
    color: #42478D;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.2;
    margin-top: 45px;
    letter-spacing: -0.05rem;
}

.testimonials-dots {
    display: flex;
    gap: 15px;
    margin-top: 70px;
    align-items: center;
    justify-content: center;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #9BA3D1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #272C6E;
    width: 14px;
    height: 14px;
}

.column-text {
    color: #272C6E;
    font-size: 24px;
    font-weight: 200;
    line-height: 1.2;
    text-align: left;
    opacity: 0;
}

.column-text.visible {
    animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}


.column-text-bullet {
    color: #272C6E;
    font-size: 21px;
    font-weight: 200;
    line-height: 1.2;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
}

.column-text-bullet.visible {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.bullet-icon.visible {
    animation: pulse 0.5s ease-out;
}

.column-image {
    width: 400px;
    height: auto;
    margin-left: 0px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.column-image.visible {
    animation: fadeInRight 0.8s ease-out 0.3s forwards;
}
/* Client Trust Section */
.client-trust-section {
    width: 100%;
    height: 250px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 60px 0px 60px;
    border-bottom: 1px solid #343C98;
}


.logos-row{
 display: flex;
 justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
} 

.trust-text {
    color: #272C6E;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.trust-highlight {
    font-weight: 600;
}

.client-logos {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 50px;
    align-items: center;
    will-change: transform;
    width: fit-content;
}


@keyframes scroll {
   0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.client-logo {
    height: 100px;
    width: 150px;
    object-fit: contain;
    flex-shrink: 0;
    user-select: none;
}
/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 60px;
    border-top: 1px solid #343C98;
    overflow: hidden;
}

.contact-container {
    display: flex;
    gap: 100px;
    width: 100%;
    max-width: 1750px;
    align-items: flex-start;
}

.contact-left {
    width: 57%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
}

.contact-left.visible {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.contact-title {
    color: #272C6E;
    font-size: 49px;
    font-weight: 550;
    margin-bottom: 25px;
    letter-spacing: -0.1rem;
    margin-top: 10px;
}

.contact-description {
    color: #1F245B;
    font-size: 24px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 50px;
}
.contact-description2 {
    color: #1F245B;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 50px;
    margin-top: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: transform 0.3s ease;
}

.contact-info-item.visible {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-item:nth-child(1) {
    animation-delay: 0.3s;
}

.contact-info-item:nth-child(2) {
    animation-delay: 0.45s;
}

.contact-info-item:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-icon {
    width: 60px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-info-label {
    color: #1F245B;
    font-size: 20px;
    font-weight: 500;
}

.contact-info-value {
    color: #1F245B;
    font-size: 19px;
    font-weight: 200;
}

.contact-right {
    width: 53%;
    display: flex;
    justify-content: right;
    opacity: 0;
}

.contact-right.visible {
    animation: fadeInRight 0.8s ease-out 0.2s forwards;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #CED4EF;
    padding: 50px 40px;
    border-radius: 15px;
    width: 590px;
    height: auto;
    padding-bottom: 30px;
}

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

.form-label {
    color: #272C6E;
    font-size: 18px;
    font-weight: 300;
}

.form-input,
.form-textarea {
    padding: 10px 10px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #272C6E;
    background-color: #F0F3FF;
    transition: all 0.3s ease;
}

.form-input {
    height: 41px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #E8ECFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 44, 110, 0.1);
}

.form-textarea {
    resize: none;
    min-height: 250px;
    flex-grow: 1;
}

.form-submit {
    background-color: #303E7F;
    color: white;
    padding: 11px 30px;
    border: none;
    border-radius: 6px;
    font-size: 19px;
    font-weight: 300;
    height: auto;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: auto;
}

.form-submit:hover {
    opacity: 0.65;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 62, 127, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:hover {
    opacity: 0.65;
}
/* Footer Section */
.footer-section {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    height: auto;
    background-color: #161E44;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.footer-container {
    display: flex;
    gap: 0px;
    width: 100%;
    max-width: 1400px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 35%;
    opacity: 0;
}

.footer-left.visible {
    animation: fadeInUp 1.0s ease-out 0.3s forwards;
}

.footer-logo {
    width: 125px;
    height: 85px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.4s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 40%;
    align-items: flex-start;
    opacity: 0;
}

.footer-middle.visible {
    animation: fadeInUp 1.0s ease-out 0.3s forwards;
}

.footer-link {
    color: white;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    padding-left: 0;
}


.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.5s ease;
}
.footer-link:hover {
    opacity: 0.9;
    padding-left: 0;  /* Changed from 20px to 0 */
}

.footer-link:hover::before {
    width: 100%;  /* Changed from 30px to 100% for full underline */
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 27%;
    align-items: flex-start;
    opacity: 0;  /* ADD THIS */
}
.footer-right.visible {
    animation: fadeInUp 1.0s ease-out 0.3s forwards;
}

.footer-contact-text {
    color: white;
    font-size: 22px;
    font-weight: 200;
    line-height: 1.0;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.footer-contact-text:hover {
    transform: translateX(0px);
}


/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1003;
}

.hamburger {
    width: 9px;
    height: 8px;
    
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgba(22, 30, 68, 0.98);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 6px;
}

.hamburger span:nth-child(3) {
    top: 12px;
}

.mobile-menu-toggle.active .hamburger span {
    background: white !important;
    z-index: 1004;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
    z-index: 1004;
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}
  .hero-text {
        font-size: 37px;
        line-height: 2.3rem;
        letter-spacing: -0.07rem;
        margin-bottom: 25px !important;
        max-width: 480px;
    }

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
    z-index: 1004;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(22, 30, 68, 0.98);
    z-index: 999;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: 400;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-menu a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-menu a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-menu a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-menu a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-menu a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-menu a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-menu a:hover {
    opacity: 0.7;
    transform: translateX(-5px);
}

.whatsapp-button {
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 9999;
    background-color: #24d367f0;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp-button img {
    width: 38px;
    height: 38px;
    object-fit: contain;
  
}

.whatsapp-button span {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.382);
}

.whatsapp-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Tablet Styles */
@media (max-width: 1400px) {
    
     .hero-benefits {
        max-width: 480px;
    }
    .hero {
        background-size: cover;
        background-position: center center;
        padding-top: 0px;
        min-height: 100vh;
        height: auto;
        align-items: center;
    }
    .column-text {
    font-size: 22px;
    }
    .contact-description {
    color: #1F245B;
    font-size: 23px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 40px;
}
    
    .benefit-text {
        font-size: 19px;
        line-height: 1.2;
    }
     .hero-text {
        font-size: 35px;
        line-height: 2.2rem;
        letter-spacing: -0.05rem;
        margin-bottom: 10px;
        max-width: 460px;
    }
    .logo {
    height: 75px;
    z-index: 1001;
    }
    .brand-logos img {
        width: auto !important;
        max-width: 28% !important;
        height: auto !important;
        max-height: 90px;
    }
    .new-section {
    padding: 60px 0px 40px 60px;
    }

    .column-image {
        width: 350px;
        max-width: 100%;
        margin-top: 25px;
    }
    .new-section-title {
    font-size: 48px;
    }
   
    .contact-title{
    font-size: 45px;
    }
    .nav-menu {
    display: flex;
    gap: 50px;
    }
    .testimonial-text {
    color: #42478D;
    font-size: 23px;
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: -0.01rem;
    margin-bottom: auto;
    text-align: left;
}
}
@media (max-width: 1280px) {
    .nav-menu {
    display: flex;
    gap: 40px;
    }
    .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      #F0F8FB 0%, 
      #f0f8fbdf 30%,
      #f0f8fbc1 35%,
      transparent 55%
  ),linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.714) 0%,         /* Completely black at TOP */
      rgba(0, 0, 0, 0.549) 8%,
      rgba(0, 0, 0, 0.137) 12%,
      rgba(0, 0, 0, 0) 16%,
      transparent 0%
    );
  pointer-events: none;
}
    .hero {
        background-size: cover;
        background-position: center center;
        padding-top: 0px;
        min-height: 100vh;
        height: auto;
        align-items: center;
    }
    .hero-content {
       justify-content: flex-start;
        align-items: flex-start;
    }
     .hero-benefits {
        max-width: 400px;
    }
    .contact-description {
    color: #1F245B;
    font-size: 21px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 40px;
}
    .column-text-bullet {
    color: #272C6E;
    font-size: 19px !important;
    font-weight: 200;
    line-height: 1.0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
}
    
    .benefit-text {
        font-size: 19px;
        line-height: 1.2;
    }
     .hero-text {
        font-size: 32px;
        line-height: 2rem;
        letter-spacing: -0.05rem;
        max-width: 420px;
    }
    .testimonial-text {
    color: #42478D;
    font-size: 22px;
    font-weight: 200;
    line-height: 1.7rem;
    letter-spacing: -0.001rem;
    margin-bottom: auto;
    text-align: left;
}
.faq-question {
        font-size: 25px;
    }
    .hero-button {
        font-size: 20px;
        padding: 13px 24px;
    }
    .brand-logos img {
        max-width: 26% !important;
        max-height: 85px;
    }
    
    .testimonials-title {
    font-size: 48px;
    line-height: 2.8rem;
    }
    .column-image {
        width: 320px;
        max-width: 100%;
        margin-top: 30px;
    }
    .nosotros-columns {
    gap: 50px;
    }
    .new-section-title {
    font-size: 43px;
    line-height: 2.8rem;
    }
    .column-text {
    font-size: 21px;
    }
}
@media (max-width: 1100px) {
    
    .contact-description {
        color: #1F245B;
        font-size: 23px;
        font-weight: 200;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    .overlay {
        display: none;
    }
        :root {
            --header-height: 95px;  /* Adjusted for smaller logo */
        }
        .contact-description2 {
        color: #1F245B;
        font-size: 23px;
        font-weight: 300;
        line-height: 1.2;
        margin-bottom: 50px;
        margin-top: 10px;
    }
   
    
    .hero {
        width: 100%;
        max-width: 100%;
        background-image: url('tablet3.png');
        background-size: cover;
        background-position: flex-start center;
        background-repeat: no-repeat;
        min-height: 100vh;
        height: auto;
        align-items: center;
        overflow: hidden;
        justify-content: flex-start;
        padding-top: 0px;
    }
    .two-columns {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .column-left,
    .column-right {
        width: 100%;
        align-self: flex-start;
    }
    .column-right {
        display: flex;
        align-items: flex-start;
    }
    :root {
    --header-height: 35px;
}
    .column-image {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        margin-top: 20px;
        justify-content: center !important;
    }
    .nav-menu {
        display: none;
    }
    .benefit-text {
    font-size: 19px !important;
    }

    .mobile-menu-toggle {
        display: block;
    }
    .logo {
    height: 55px;
    z-index: 1001;
    }
    .column-text {
    font-size: 21px;
    }
    .column-text-bullet {
    font-size: 18px !important; 
    }
    .new-section {
    padding: 60px 60px 60px 60px;
}
    
.hero-content {
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    animation: none;
    margin-top: 0;
    max-width: 100%;
    width: 100%;
     padding-bottom: 50px;
    padding-top: 0; /* Added 20px bottom padding */
    background: linear-gradient(
        to bottom,
        #f0f8fb 0%,
        #f0f8fb 70%,
        #f0f8fbe5 80%,
        transparent 100%
    ); /* Optional: smooth bottom edge */
}
   
    .hero-text {
        font-size: 30px;
        line-height: 1rem;
        letter-spacing: -0.05rem;
        margin-bottom: 5px;
        max-width: 3300px;
        margin-top: 100px;
        padding-left: 40px;
        padding-right: 40px;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        row-gap: 15px !important;
        max-width: 2000px;
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 20px;
    }
    
    .hero-benefit-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .hero-benefit-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-benefit-item:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .hero-benefit-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .benefit-text {
        font-size: 19px;
        line-height: 1.2;
    }
    
    .benefit-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-button {
        font-size: 15px;
        padding: 6px 15px !important;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: 40px !important;
    }
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
     .logo {
        height: 57px;  /* Change from 55px to 45px or smaller */
        z-index: 1001;
    }
    
    /* Reduce header padding */
    .site-header {
        padding: 15px 0;  /* Change from 20px to 15px or 10px */
    }
    
    .contact-left,
    .contact-right {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
        max-width: 590px;
        margin: 0 auto;
    }
    .brand-logos img {
        width: auto !important;
        max-width: 25% !important;
        height: auto !important;
        max-height: 80px;
    }
    

    .faq-box {
        padding: 35px 30px;
    }
    
    .faq-question {
        font-size: 24px;
    }
    
    .faq-answer {
        font-size: 18px;
    }
    .site-header .container {
    padding: 0 120px 0 90px;
}
    .nosotros-title {
    color: #272C6E;
    font-size: 45px;
    font-weight: 550;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.15rem;
    }
     .nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 30px; 
    font-size: 30px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}
    .testimonials-title {
    font-size: 47px;
    }
    .faq-title {
    font-size: 47px;
    }

    .contact-title{
    font-size: 47px;
    }
}
@media (max-width: 1000px) {
   
    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        max-width:2000px;
    }
    .benefit-text {
        font-size: 18px !important;
       
    }
     .logo {
        height: 57px;  /* Change from 55px to 45px or smaller */
        z-index: 1001;
    }
    
    /* Reduce header padding */
    .site-header {
        padding: 15px 0;  /* Change from 20px to 15px or 10px */
    }

  .logo {
        height: 57px;  /* Change from 55px to 45px or smaller */
        z-index: 1001;
    }
    .testimonials-title {
    font-size: 44px;
    line-height: 2.8rem;
    margin-bottom: 70px;
    }
    .benefit-text {
        font-size: 18px;
        line-height: 1.2;
    }
    .new-section-title {
margin-bottom: 25px !important;
}
    
    /* Reduce header padding */
    .site-header {
        padding: 15px 0;  /* Change from 20px to 15px or 10px */
    }

      .suppliers-section{
max-width: 100%; 
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
align-items: flex-start;
justify-content: flex-start;
padding: 40px 40px 40px 40px;
overflow: hidden;
background-color: white; 
min-height: 300px;
}

    .logos-row{
 display: flex;
 justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  gap: 30px;
  flex-wrap: wrap;
} 
     .hero-text {
        font-size: 28px;
        line-height: 1.6rem;
        margin-bottom: 18px !important;
        letter-spacing: -0.05rem;
        margin-bottom: 0px;
        max-width: 2000px;
        margin-top: 70px;
}
  .whatsapp-button {
        bottom: 50px;
        right: 30px;
        padding: 12px 20px;
        gap: 10px;
    }
    
    .whatsapp-button img {
        width: 36px;
        height: 36px;
    }
    
    .whatsapp-button span {
        font-size: 21px;
    }
    }
    .testimonial-text {
    color: #42478D;
    font-size: 24px;
    font-weight: 200;
    line-height: 1.7rem;
    letter-spacing: -0.01rem;
    margin-bottom: auto;
    text-align: left;
}



.testimonial-name {
    color: #42478D;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.2;
    margin-top: 45px;
    letter-spacing: -0.05rem;
}


    .benefit-text {
        font-size: 17px;
        line-height: 1.2;
    }
    .hero-button {
        font-size: 16px;
        padding: 10px 16px;
    }
    .brand-logos img {
        max-width: 28% !important;
        max-height: 85px;
    }

     .faq-question {
        font-size: 22px;
    }


@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    .column-image {
        max-width: 300px;
    }

    .hero-text {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-benefits {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-button {
        margin-left: 20px !important;
        padding-left: 20px;
        padding-right: 20px;
    }
    .site-header .container {
    padding: 0 100px 0 70px;
}
    
    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        align-items: left;
    }
    
    .footer-link,
    .footer-contact-text {
        text-align: left;
    }
    .brand-logos img {
        max-width: 30% !important;
        max-height: 85px;
    }
    

    .mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

    .mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 28px !important;
    font-weight: 400;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.new-section-title {
color: #272C6E;
margin-top: 0px;
font-size: 41px !important;
line-height: 43px !important;
margin-bottom: 20px !important;
}
.new-section {
width: 100%;
min-height: 300px !important;
} 

.column-text {
    font-size: 20px !important;  /* Default on larger screens */
    margin-bottom: 0px !important;
}
.column-text-bullet {
    font-size: 18px !important; 
    gap: 10px   !important;
    }
    .logo-white {
position: absolute;
left: 73px;
top: 0px;
height: 53px;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease 0.2s;
z-index: 2004;
}
.nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 30px; 
    font-size: 30px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}
}
@media (max-width: 800px) {
    .whatsapp-button {
        bottom: 40px;
        right: 20px;
        padding: 10px 16px;
        gap: 8px;
    }
    
    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-button span {
        font-size: 18px;
    }
    .testimonials-grid {
        flex-direction: column;
        gap: 60px;
        min-height: auto;
    }
    .hero-content {
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 100%;
     padding-bottom: 30px !important;
    padding-top: 0; /* Added 20px bottom padding */
    background: linear-gradient(
        to bottom,
        #f0f8fb 0%,
        #f0f8fb 70%,
        #f0f8fbe5 80%,
        transparent 100%
    ); /* Optional: smooth bottom edge */
}

    .testimonial-column {
        width: 100%;
        padding: 0 20px;
    }
    
    .testimonial-divider {
        display: none;
    }
    
    .brand-logos img {
        max-width: 30% !important;
        max-height: 70px;
    }
    .site-header .container {
    padding: 0 50px 0 30px;
}
    .client-trust-section {
        padding: 20px 40px 0px 40px !important;
    }
     .logo {
        height: 49px;  /* Change from 55px to 45px or smaller */
        z-index: 1001;
    }
    
    /* Reduce header padding */
    .site-header {
        padding: 10px 0;  /* Change from 20px to 15px or 10px */
    }
    
    .client-logos {
        padding: 0 10px;
    }
    
    .logos-track {
        gap: 35px !important;
    }
    
    .client-logo {
        height: 70px !important;
        width: 110px !important;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-box {
        padding: 30px 25px;
        max-width: 100%;
        height: 180px;
    }
    
    .faq-box.expanded {
        min-height: 300px;
    }
    
    .faq-question {
        font-size: 23px;
        line-height: 1.0;
    }

    
    .faq-answer {
        font-size: 20px;
        line-height: 1.1;
    }
      .contact-description {
        color: #1F245B;
        font-size: 22px;

    }
       .contact-description2 {
        color: #1F245B;
        font-size: 22px;

    }
    .hero-text {
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-top: 70px;
    }
    
    .hero-benefits {
        padding-left: 0px !important; 
        padding-right: 0px !important;
    }
    .hero-button {
        margin-left: 0px !important;
        padding-left: 0px;
        padding-right: 0px;
    }
        .logo-white {
position: absolute;
left: 33px;
top: 0px;
height: 45px;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease 0.2s;
z-index: 2004;
}
    
    .faq-arrow {
        width: 40px;
        height: 40px;
        margin-top: 25px;
    }
    .nosotros-title {
    color: #272C6E;
    font-size: 43px;
    font-weight: 550;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: -0.15rem;
    }
    .testimonials-title {
    font-size: 43px;
    }
    .testimonial-name {
    color: #42478D;
    font-size: 27px !important;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: -0.05rem;
}

.testimonial-text {
    color: #42478D;
    font-size: 20px !important;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.011rem;
    margin-bottom: auto;
    text-align: left;
}

.testimonial-company {
    color: #272C6E;
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    text-align: left;
}
    .faq-title {
    font-size: 43px;
    }
    .contact-title{
    font-size: 43px;
    }
    .contact-icon {
    width: 55px;
    height: 43px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-label {
    color: #1F245B;
    font-size: 18px;
    font-weight: 500;
}

.contact-info-value {
    color: #1F245B;
    font-size: 18px;
    font-weight: 200;
}


    .suppliers-section{
max-width: 100%; 
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
align-items: flex-start;
justify-content: flex-start;
padding: 40px 30px 40px 30px;
overflow: hidden;
background-color: white; 
min-height: 200px;
}
.nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 25px; 
    font-size: 28px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}
    .logos-row{
 display: flex;
 justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  gap: 15px;
  flex-wrap: wrap;
} 
.footer-logo {
    width: 105px;
    height: 68px;
    margin-left: -10px;
}
.footer-contact-text {
    color: white;
    font-size: 19px;
    font-weight: 200;
    line-height: 0.8;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-link {
    color: white;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    padding-left: 0;
}
}

@media (max-width: 700px) {
    .hero-benefits {
        display: flex;
        flex-direction: column;
        gap: 7px !important;
        padding-right: 60px;
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px;
    }
    .hero-text {
        padding-left: 0 !important;
        padding-right: 0px;
        font-size: 25px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-button {
        margin-left: 0px !important;
        padding-left: 0px;
        margin-top: 0;
        padding-right: 20px;
        padding: 4px 12px !important;
        font-size: 16px !important;
    }
      .benefit-text {
        font-size: 17px !important;
        line-height: 1.2;
    }
    .hero {
    background-image: url('tablett.png');

}

.column-text-bullet {
    font-size: 16px !important; 
    margin-top: 0px !important;
    margin-bottom: 6px !important;
    }
    .testimonials-section {
    padding: 80px 20px 80px 20px !important;  /* 60px on left and right */
}
.faq-section {
    padding: 60px 40px 60px 40px;
    overflow: hidden;
}
.contact-section {
    padding: 60px 40px 60px 40px;
    overflow: hidden;
}
     .testimonials-title {
    font-size: 42px !important;
    line-height: 2.8rem;
     margin-bottom: 60px !important;
    }
         .contact-description {
        color: #1F245B;
        font-size: 21px;
    }
         .contact-description2 {
        color: #1F245B;
        font-size: 21px;

    }
    .hero-benefit-item {
        grid-column: auto;
        grid-row: auto;
    }
    .new-section-title {
    color: #272C6E;
    margin-top: 0px;
    font-size: 37px !important;
    line-height: 38px !important;
    margin-bottom: 20px !important;
    }

.column-text {
    font-size: 18px !important;  /* Default on larger screens */
    margin-bottom: 25px !important;
}
.new-section {
        padding: 40px 30px 40px 30px;  /* Back to 60px both sides */
    }
    .bullet-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}
.nosotros-section {
    padding: 60px 40px 60px 40px !important;  /* Default */
}
.nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 26px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}
 .faq-title {
    font-size: 40px;
    }
.contact-title {
        font-size: 40px;
    }

}

@media (max-width: 650px) {
    .site-header {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 0;
        z-index: 1000;
        }

    .testimonial-name {
    color: #42478D;
    font-size: 26px !important;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: -0.05rem;
}

.testimonial-text {
    color: #42478D;
    font-size: 19px !important;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.01rem;
    margin-bottom: auto;
    text-align: left;
}

.testimonial-company {
    color: #272C6E;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    text-align: left;
}
    
    .hero-text {
        font-size: 23px;
        padding-left: 20px;  /* Smaller side margin */
        padding-right: 20px;
        margin-bottom: 15px !important;
    }
    
    .hero-benefits { /* Smaller space between benefit items */
        padding-left: 10px;  /* Smaller side margin */
        padding-right: 10px; /* Smaller side margin */
        gap: 7px !important;
        line-height: -4rem !important;
    }
    
    .hero-button {
        margin-left: 0px !important;  /* Align with text margins */
    }
    .footer-section {
        padding: 40px 30px;
    }

    .nosotros-title {
        color: #272C6E;
        font-size: 40px;
        font-weight: 550;
        text-align: center;
        margin-bottom: 50px;
        letter-spacing: -0.10rem;
    }
    .testimonails-title {
        font-size: 40px;
    }
    .faq-title {
        font-size: 40px;
    }
     .faq-question {
        font-size: 22px;
        line-height: 1.2;
     }
      .faq-answer {
        font-size: 19px;
        line-height: 1.1;
    }
    .hero {
        background-image: url('tablettt.png');
    }
    .contact-title {
        font-size: 39px;
    }
}

@media (max-width: 600px) {
    .site-header {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 0;
        z-index: 1000;
        }
        .nosotros-title {
font-size: 37px !important;

}
.column-text-bullet {
    font-size: 16px !important; 
    margin-top: 0px !important;
    margin-bottom: 8px !important;
    line-height: 1.15 !important;
    }
    .nosotros-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 40px 40px 40px;
}
    .hero-text {
        font-size: 22px !important;
        padding-left: 20px;  /* Smaller side margin */
        padding-right: 20px;
        margin-bottom: 15px !important;
        line-height: 0.9 !important;
    }
     .testimonials-title {
    font-size: 36px !important;
    line-height: 2.3rem !important;
     margin-bottom: 60px !important; 
    }
      .faq-answer {
        font-size: 18px;
        line-height: 1.1;
    }
        .mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.nosotros-text {
color: #272C6E;
font-size: 22px !important;
}
  .new-section-title {
    color: #272C6E;
    margin-top: 0px;
    font-size: 33px !important;
    letter-spacing: -0.11rem  !important;
    line-height: 30px !important;
    margin-bottom: 20px !important;
    }

.column-text {
    font-size: 17px !important;  /* Default on larger screens */
}
    .testimonial-name {
    color: #42478D;
    font-size: 24px !important;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: -0.05rem;
}

.testimonial-text {
    color: #42478D;
    font-size: 17px !important;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.01rem;
    margin-bottom: auto;
    text-align: left;
}

.testimonial-company {
    color: #272C6E;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    text-align: left;
}

    .mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 26px !important;
    font-weight: 400;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}
    
    .hero-benefits { /* Smaller space between benefit items */
        padding-left: 10px;  /* Smaller side margin */
        padding-right: 10px; /* Smaller side margin */
        gap: 2px !important;
        line-height: -4rem !important;
        margin-bottom: 11px !important;
    }
    
    .hero-button {
        margin-left: 0px !important;  /* Align with text margins */
    }
    .footer-section {
        padding: 40px 30px;
    }

    .nosotros-title {
        color: #272C6E;
        font-size: 40px;
        font-weight: 550;
        text-align: center;
        margin-bottom: 50px;
        letter-spacing: -0.10rem;
    }
    .column-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        margin-top: 0px;
        justify-content: center !important;
        margin-bottom: 0px;
    }
    .testimonails-title {
        font-size: 40px;
    }
    .trust-text {
    color: #272C6E;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.01rem;
}
    .faq-title {
        font-size: 34px;
    }
     .faq-question {
        font-size: 21px;
        line-height: 1.2;
     }
    .hero {
        background-image: url('tablettt.png');
    }
  
    .benefit-text {
        font-size: 15px !important;
        line-height: 1.1 !important;
        font-weight: 400;
        margin-bottom: 5px !important;
    }
    
    .hero-button {
        margin-left: 0px !important;
        font-size: 14px !important;
        padding: 2px 11px !important;
        font-size: 15px;
        margin-top: 0px !important;
    }
    .hamburger {
    width: 7px;
    height: 6px;
}
 .testimonials-grid {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }
     .contact-title{
    font-size: 34px;
    }
         .contact-description {
        color: #1F245B;
        font-size: 19px;
    }
         .contact-description2 {
        color: #1F245B;
        font-size: 19px;
    }
.benefit-icon {
    width: 14px !important;
    height: 14px !important;
}

.hamburger span {
    height: 3px;  /* Height of each line */
    width: 100%;  /* Takes full width of .hamburger (9px) */
}
.nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 15px; 
    font-size: 24px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}
    .contact-icon {
    width: 50px;
    height: 39px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-info-label {
    color: #1F245B;
    font-size: 16px;
    font-weight: 500;
}

.contact-info-value {
    color: #1F245B;
    font-size: 17px;
    font-weight: 200;
}

    .logos-row{
 display: flex;
 justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  gap: 10px;
  flex-wrap: wrap;
} 
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #CED4EF;
    padding: 38px 32px;
    border-radius: 15px;
    width: 590px;
    height: auto;
}
.form-label {
    color: #272C6E;
    font-size: 17px;
    font-weight: 300;
}
.form-group {
    gap: 11px;
}
.form-input,
.form-textarea {
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #272C6E;
    background-color: #F0F3FF;
    transition: all 0.3s ease;
}
.form-input {
        height: 38px; /* change to whatever size you want */
    }
    .form-textarea {
        min-height: 180px; /* change to whatever size you want */
    }
    .form-submit {
    font-size: 18px;
    margin-top: 7px;
}
.footer-logo {
    width: 97px;
    height: 62px;
    margin-left: -10px;
}
.footer-contact-text {
    color: white;
    font-size: 18px;
    font-weight: 200;
    line-height: 0.8;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-link {
    color: white;
    font-size: 21px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    padding-left: 0;
}
}
@media (max-width: 500px) {
    .whatsapp-button {
        bottom: 25px;
        right: 15px;
        padding: 8px 14px;
    }
    
    .whatsapp-button img {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-button span {
        font-size: 16px;
    }
    .site-header {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 0;
        z-index: 1000;
        }
        .logo {
        height: 40px;  /* Change from 55px to 45px or smaller */
        z-index: 1001;
        margin-left: -33px;
    }
      .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px !important;
        min-height: 350px;
    }
    .nosotros-title {
font-size: 34px !important;
margin-bottom: 38px !important;
}
    .site-header .container {
    padding: 0 40px 0 60px;
}
    .benefit-icon {
    width: 13px !important;
    height: 13px !important;
}
    .hero-text {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 20px !important;
        line-height: 0.9 !important;
        margin-top: 63px;
        margin-bottom: 18px !important;
    }
        .logo-white {
position: absolute;
left: 23px;
top: 0px;
height: 36px;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease 0.2s;
z-index: 2004;
}

    .hero-benefits {
        line-height: 0.5 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-bottom: 18px !important;
    }
    .benefit-text {
        font-size: 14px !important;
        line-height: 1.1 !important;
        font-weight: 400;
    }
    
    .hero-button {
        margin-left: 15px !important;
        font-size: 14px !important;
        padding: 2px 11px !important;
        font-size: 15px;
    }
        .mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
}
    .testimonial-name {
    color: #42478D;
    font-size: 22px !important;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: -0.05rem;
}

.testimonial-text {
    color: #42478D;
    font-size: 17px !important;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.01rem;
    margin-bottom: auto;
    text-align: left;
}

.testimonial-company {
    color: #272C6E;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    text-align: left;
}

    .trust-text {
    color: #272C6E;
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.01rem;
}
.faq-section {
    padding: 60px 30px 60px 30px;
}
 .faq-question {
        font-size: 19px;
        line-height: 1.2;
     }
        .faq-answer {
        font-size: 17px;
        line-height: 1.1;
    }
    .mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px !important;
    font-weight: 400;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}
  .new-section-title {
    color: #272C6E;
    margin-top: 0px;
    font-size: 30px !important;
    letter-spacing: -0.11rem  !important;
    line-height: 29px !important;
    margin-bottom: 25px !important;
    }

.column-text {
    font-size: 17px !important;  /* Default on larger screens */
}
.new-section {
        padding: 40px 30px 40px 30px;  /* Back to 60px both sides */
    }
     .testimonials-grid {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    .contact-section {
    padding: 60px 30px 60px 30px;
}
         .contact-description {
        color: #1F245B;
        font-size: 18px;
    }

         .contact-description2 {
        color: #1F245B;
        font-size: 18px;
    }
    .nosotros-title2 {
    color: #272C6E;
    text-align: center; 
    margin-bottom: 15px; 
    font-size: 21px;
    letter-spacing: -0.05rem;
    font-weight: 550;
}
    .contact-icon {
    width: 46px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-info-label {
    color: #1F245B;
    font-size: 15px;
    font-weight: 500;
}

.contact-info-value {
    color: #1F245B;
    font-size: 16px;
    font-weight: 200;
}
.footer-logo {
    width: 92px;
    height: 57px;
    margin-left: -10px;
}
.footer-contact-text {
    color: white;
    font-size: 16px;
    font-weight: 200;
    line-height: 0.8;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-link {
    color: white;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    padding-left: 0;
}
}
@media (max-width: 400px) {

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #CED4EF;
    padding: 28px 23px;
    border-radius: 15px;
    width: 590px;
    height: auto;
}
.form-label {
    color: #272C6E;
    font-size: 15px;
    font-weight: 300;
}
.form-group {
    gap: 11px;
}
.form-input {
        height: 35px !important; /* change to whatever size you want */
    }
.form-input,
.form-textarea {
    padding: 8px 0px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #272C6E;
    background-color: #F0F3FF;
    transition: all 0.3s ease;
}
.form-submit {
    font-size: 16px;
    margin-top: 6px;
}}