/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 28px;
    color: #0d5186;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.btn {
    display: inline-block;
    background-color: #ff7043;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #e95d2a;
}

/* Header */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #004E89;
font-family: Inter;
font-size: 27px;
font-style: normal;
font-weight: 800;
line-height: 32px; /* 118.519% */
}

.logo img {
    height: 40px;
    width: 40px;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__link {
    padding: 5px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav__link.active,
.nav__link:hover {
    color: #0d5186;
}

.nav__link.active::after,
.nav__link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0d5186;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #0d5186;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    background-color: #e8edf2;
    padding: 60px 0;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero__text {
    flex: 1;
}

.hero__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero__title {
    font-size: 36px;
    color: #0d5186;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero__description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero__btn {
    font-size: 16px;
}

/* Soluciones section */
.soluciones {
    padding: 80px 0;
}

.soluciones__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.solucion-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    border: 1px solid #eee;
}

.solucion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solucion-card__icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucion-card__icon img {
    width: 100%;
    height: auto;
}

.solucion-card__title {
    font-size: 20px;
    color: #0d5186;
    margin-bottom: 15px;
    font-weight: 600;
}

.solucion-card__text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Enfoque section */
.enfoque {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.enfoque__content {
    position: relative;
}

.enfoque__content::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #ff7043;
}

.enfoque__item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.enfoque__item:last-child {
    margin-bottom: 0;
}

.enfoque__num {
    width: 40px;
    height: 40px;
    background-color: #ff7043;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    z-index: 2;
    flex-shrink: 0;
    font-size: 18px;
}

.enfoque__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.enfoque__title {
    font-size: 22px;
    color: #0d5186;
    margin-bottom: 10px;
    font-weight: 600;
}

.enfoque__text {
    margin-bottom: 20px;
    max-width: 600px;
    color: #555;
}

.enfoque__image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enfoque__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Casos section */
.casos {
    padding: 80px 0;
    background-color: #ffd8cc;
}

.casos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.caso-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.caso-card__image {
    height: 200px;
    overflow: hidden;
}

.caso-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caso-card__content {
    padding: 25px;
}

.caso-card__title {
    font-size: 22px;
    color: #0d5186;
    margin-bottom: 20px;
    font-weight: 600;
}

.caso-card__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.caso-card__stat-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}

.caso-card__stat-value {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.caso-card__quote {
    font-style: italic;
    color: #555;
    border-left: 3px solid #ff7043;
    padding-left: 15px;
    line-height: 1.5;
}

.caso-card__quote p {
    margin-bottom: 10px;
}

.caso-card__quote cite {
    display: block;
    font-weight: bold;
    font-style: normal;
}

/* Clientes section */
.clientes {
    padding: 80px 0;
}

.clientes__logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.cliente-logo {
    width: 120px;
    filter: grayscale(1);
    transition: filter 0.3s, transform 0.3s;
    opacity: 0.7;
}

.cliente-logo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
    opacity: 1;
}

.cliente-logo img {
    width: 100%;
    height: auto;
}

/* Contacto section */
.contacto {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contacto__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contacto__subtitle {
    font-size: 22px;
    color: #0d5186;
    margin-bottom: 25px;
    font-weight: 600;
}

.contacto__form-wrap {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contacto__form {
    display: grid;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d5186;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-btn {
    justify-self: start;
    margin-top: 10px;
}

.contacto__info {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contacto__details {
    margin-bottom: 30px;
}

.contacto__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contacto__item:last-child {
    margin-bottom: 0;
}

.contacto__icon {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto__icon img {
    width: 100%;
    height: auto;
}

.contacto__text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #0d5186;
    font-weight: 600;
}

.contacto__text p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.contacto__map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contacto__map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 40px 0 20px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__logo img {
    height: 30px;
    width: 30px;
}

.footer__links {
    display: flex;
    gap: 30px;
}

.footer__link {
    color: #aaa;
    transition: color 0.3s;
    font-size: 14px;
}

.footer__link:hover {
    color: white;
}

.footer__copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0d5186;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-consent__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-consent__content p {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-btn {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 14px;
    background-color: white;
    color: #0d5186;
}

.cookie-btn:hover {
    background-color: #f0f0f0;
}

/* Thank you page */
.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e8edf2;
    padding: 20px;
}

.thank-you-container {
    text-align: center;
    background-color: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.thank-you__logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thank-you__logo img {
    height: 50px;
}

.thank-you__title {
    font-size: 32px;
    color: #0d5186;
    margin-bottom: 40px;
    font-weight: 700;
}

.thank-you__btn {
    display: inline-block;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .soluciones__grid {
        gap: 20px;
    }
    
    .casos__grid {
        gap: 20px;
    }
    
    .hero__title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .burger-menu {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        padding: 30px 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav__link {
        font-size: 18px;
        padding: 10px;
    }
    
    .hero__content {
        flex-direction: column;
    }
    
    .hero__text {
        text-align: center;
    }
    
    .soluciones__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casos__grid {
        grid-template-columns: 1fr;
    }
    
    .contacto__grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
    }
    
    .enfoque__image {
        max-width: 100%;
    }
    
    .clientes__logos {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__description {
        font-size: 16px;
    }
    
    .soluciones,
    .enfoque,
    .casos,
    .clientes,
    .contacto {
        padding: 60px 0;
    }
    
    .enfoque__content::before {
        left: 19px;
    }
    
    .enfoque__item {
        margin-bottom: 40px;
    }
    
    .enfoque__title {
        font-size: 20px;
    }
    
    .caso-card__content {
        padding: 20px;
    }
    
    .caso-card__title {
        font-size: 20px;
    }
    
    .contacto__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .soluciones__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero__title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .caso-card__stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solucion-card {
        padding: 25px 15px;
    }
    
    .enfoque__title {
        font-size: 18px;
    }
    
    .enfoque__text {
        font-size: 14px;
    }
    
    .contacto__form-wrap,
    .contacto__info {
        padding: 20px 15px;
    }
    
    .thank-you-container {
        padding: 30px 20px;
    }
    
    .thank-you__title {
        font-size: 26px;
    }
    
    .thank-you__btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
              
              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                