/* Sitio web desarrollado por:
María G. Ramírez Morales 
Contacto: maria.hlvt98@gmail.com 
Año: 2026 */

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

@font-face {
    font-family: 'Kanit-Bold';
    src: url('fonts/Kanit-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

    body {
    font-family: 'Roboto-Regular', sans-serif;
    line-height: 1.6;
    color: #333;
    background-repeat: no-repeat;
    background-position: right 700px;
    background-size: 60% auto;
    background-attachment: scroll;
}

/* Fondo exclusivo para la página de inicio */
body.home-page {
    background-image: url('images/Espiral_fondo.svg');
    background-repeat: no-repeat;
    background-position: right 700px;
    background-size: 60% auto;
    background-attachment: scroll;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit-Bold', sans-serif;
    font-weight: 700;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .top-bar {
        width: 100%;
        height: 20px;
        background-color: #5C5C5B;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-align: center;
        padding: 0 20px;
    }

   .navbar {
      width: 100%;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .navbar-top {
      width: 100%;
      height: 120px;
      background-color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .navbar-top .logo img {
      max-width: 320px;
      width: 100%;
      height: auto;
      display: block;
    }

    .navbar-bottom {
      width: 100%;
      height: 60px;
      background-color: #EF7911;
      display: flex;
      align-items: center;
    }

    .nav-menu li a {
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 1rem; 
    font-weight: 400;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    flex-direction: row-reverse;
}

    .nav-menu li:first-child a {
    flex-direction: row;
    }

    .nav-menu li a:hover {
      transform: translateY(-5px);
    }

    .nav-menu li a img {
      width: 20px;
      height: 20px;
      object-fit: contain;
      display: block;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      height: 100%;
    }

    .nav-menu a {
      color: #FFFFFF;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      transition: opacity 0.3s ease;
    }

    .nav-menu a:hover {
      opacity: 0.8;
    }

    .nav-menu a.active {
    color: #ffffff;
    font-weight: 700;
}

 /* ===========================
   MENÚ HAMBURGUESA
   =========================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 45px;
    height: 7px;
    background-color: #DF7B32;
    border-radius: 12px;
    margin: 7px 0;
    transition: all 0.3s ease;
}

/* ===========================
   MÓVILES
   =========================== */


@media (max-width: 768px) {

    body.home-page {
        background-image: none;
    }
    
    .navbar-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 90px;
        padding: 15px 25px;
    }

    .navbar-top .logo {
        flex: 0 0 auto;
    }

    .navbar-top .logo img {
        max-width: 170px;
        width: 100%;
        height: auto;
        display: block;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        flex: 0 0 auto;
    }

    .navbar-bottom {
        display: none;
        width: 100%;
        height: auto;
        background-color: #EF7911;
        padding: 25px 0;
    }

    .navbar-bottom.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 18px 20px;
        font-size: 1.15rem;
        width: 100%;
        min-height: 65px;
    }

    .nav-menu li a img {
        width: 24px;
        height: 24px;
    }

    .nav-menu li:first-child a {
        justify-content: center;
        align-items: center;
        gap: 0;
        flex-direction: row;
    }

    .nav-menu li:first-child a img {
        display: none !important;
    }

    .nav-menu li:first-child a span {
        display: block;
        width: auto;
        margin: 0 auto;
        text-align: center;
    }
}

/* Index */

    .hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-title-main {
    font-size: 2.5rem;
    color: #EF7911;
    text-align: center;
    margin-bottom: 20px;
}

.intro {
    margin-top: 100px;
    text-align: center;
}
.intro h2{

    font-family: 'Kanit-Bold', sans-serif;
    font-size: 2.5rem;
    color: #EF7911;
    text-align: center;
    margin-bottom: 20px;
}
.intro p {

font-family: 'Roboto-Regular', sans-serif;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.intro .btn {
    display: inline-block;
    margin: 30px auto 0;
    padding: 10px 35px;
    background-color: #EF7911;
    color: #FFFFFF;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.intro .btn:hover {
    background-color: #d96c0f;
    transform: translateY(-3px);
}

.services-preview {
    margin-top: 100px;
    text-align: center;
}

.services-preview .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 30px;
    width: 85%;
    max-width: 1100px;
}

.services-preview .section-header h2{
    font-family: 'Kanit-Bold', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #EF7911;
    margin: 0;
    white-space: nowrap;
}

.services-preview .section-line {
    flex: 1;
    height: 2px;
    background-color: #555555;
    border-radius: 10px;
}

.services-preview .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-card {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto;
    width: 85%;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 30px;
}

.services-text {
    flex: 1.5;
    background-color: #DF7B32;
    padding: 35px;
    display: flex;
    align-items: center;
}

.services-text p {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.services-image {
    flex: 1;
    min-height: 350px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-preview .btn {
    display: inline-block;
    margin: 40px auto 0;
    padding: 10px 35px;
    background-color: #EF7911;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.services-preview .btn:hover {
    background-color: #d96c0f;
    transform: translateY(-3px);
}

.video-showcase {
    margin-top: 120px;
    padding: 0 0 120px;
}

.video-showcase .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 85%;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.video-showcase .section-line {
    flex: 1;
    height: 2px;
    background-color: #555555;
    border-radius: 10px;
}

.video-container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.promo-video {
    width: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
}

.clients {
    margin-top: 60px;
    padding: 0 0 120px;
}

.clients .section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 85%;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.clients .section-header h2 {
    font-family: 'Kanit-Bold', sans-serif;
    font-size: 2rem;
    color: #EF7911;
    margin: 0;
    white-space: nowrap;
}

.clients .section-line {
    flex: 1;
    height: 2px;
    background-color: #555555;
    border-radius: 10px;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollClients 30s linear infinite;
}

.clients-track img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.clients-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollClients {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.footer {
    background-color: #5C5C5B;
    padding: 25px 0 25px;
    color: #FFFFFF;
}

.footer-logo {
    text-align: center;
    margin-bottom: 45px;
}

.footer-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}

.footer-column h3 {
    font-family: 'Kanit-Bold';
    font-size: 2rem;
    color: #EF7911;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-family: 'Roboto-Regular';
    font-size: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #EF7911;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Roboto-Regular';
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   TABLETS
   ========================= */
@media (max-width: 992px) {

    body {
        background-size: 80% auto;
        background-position: right 900px;
    }

    .navbar-top {
        height: 100px;
    }

    .navbar-top .logo img {
        max-width: 170px;
    }

    .navbar-bottom {
        height: auto;
        padding: 18px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 25px 40px;
    }

    .hero {
        height: 320px;
    }

    .intro,
    .services-preview,
    .video-showcase,
    .clients {
        margin-top: 80px;
    }

    .services-card {
        width: 100%;
    }

    .services-text {
        padding: 30px;
    }

    .services-text p {
        font-size: 1rem;
    }

    .promo-video {
        min-height: 400px;
    }

    .clients-track {
        gap: 50px;
    }

    .clients-track img {
        height: 70px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}


/* =========================
   TELÉFONOS
   ========================= */
@media (max-width: 768px) {

    body {
        background-size: 120% auto;
        background-position: center 1300px;
    }

    .container {
        width: 92%;
    }

    .top-bar {
        height: auto;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .navbar-top {
        height: 90px;
        padding: 15px;
    }

    .navbar-top .logo img {
        max-width: 170px;
    }

    .navbar-bottom {
        padding: 15px 0;
        height: auto;
    }

    .nav-menu {
        flex-direction: column;
        gap: 18px;
    }

    .nav-menu li a {
        font-size: 0.95rem;
    }

    .hero {
        height: 220px;
    }

    .intro {
        margin-top: 60px;
    }

    .intro h2 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .intro .btn,
    .services-preview .btn {
        font-size: 1rem;
        padding: 12px 28px;
    }

    .services-preview,
    .video-showcase,
    .clients {
        margin-top: 70px;
    }

    .services-preview .section-header,
    .clients .section-header,
    .video-showcase .section-header {
        width: 100%;
        gap: 15px;
    }

    .services-preview .section-header h2,
    .clients .section-header h2 {
        font-size: 1.6rem;
        white-space: normal;
    }

    .services-card {
        flex-direction: column;
        width: 100%;
        border-radius: 25px;
    }

    .services-text {
        padding: 25px;
    }

    .services-text p {
        font-size: 1rem;
    }

    .services-image {
        min-height: 280px;
    }

    .video-container {
        width: 100%;
        border-radius: 25px;
    }

    .promo-video {
        min-height: 250px;
    }

    .clients-track {
        gap: 35px;
        animation-duration: 20s;
    }

    .clients-track img {
        height: 55px;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-logo {
        margin-bottom: 35px;
    }

    .footer-logo img {
        max-width: 220px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
        margin-bottom: 45px;
    }

    .footer-column h3 {
        font-size: 1.7rem;
    }

    .footer-column a {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}


/* =========================
   DISPOSITIVOS PEQUEÑOS
   ========================= */
@media (max-width: 480px) {

    .hero {
        height: 180px;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    .services-preview .section-header h2,
    .clients .section-header h2 {
        font-size: 1.4rem;
    }

    .services-text {
        padding: 20px;
    }

    .services-image {
        min-height: 220px;
    }

    .promo-video {
        min-height: 200px;
    }

    .clients-track img {
        height: 45px;
    }

    .footer-column h3 {
        font-size: 1.5rem;
    }

    .footer-column a {
        font-size: 0.95rem;
    }
}

/* ===========================
         NOSOTROS
=========================== */


/*¿QUIÉNES SOMOS?*/

.about-intro {
    padding-top: 80px;
    padding-bottom: 120px;
}

.about-intro .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-intro .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro .about-text h2 {
    color: #EF7911;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-intro .about-text p {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
}

.about-intro .about-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.about-banner {
    margin-top: 80px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .about-intro .about-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }

    .about-intro .about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-intro .about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
}

/* ===========================
   NUESTRA HISTORIA
=========================== */

.about-history .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-history .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-history .about-text h2 {
    color: #EF7911;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-history .about-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-history .about-image img {
    height: 280px;
    max-width: 420px;
    margin: 0 auto;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .about-history .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-history .about-image {
        order: -1;
    }

    .about-history .about-image img {
        height: auto;
        max-height: 280px;
    }
}

/* BOTÓN - NUESTRA HISTORIA */

.about-history .btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: 30px;
    padding: 10px 35px;
    background-color: #EF7911;
    color: #FFFFFF;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-history .btn:hover {
    background-color: #EF7911;
    transform: translateY(-2px);
}


/* ===========================
   NUESTRO COMPROMISO
=========================== */

.about-commitment {
    padding-top: 80px;
}

.about-commitment .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-commitment .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-commitment .about-text h2 {
    color: #EF7911;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-commitment .about-text p {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
}

.about-commitment .about-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .about-commitment .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-commitment .about-image img {
        height: auto;
        max-height: 280px;
    }
}

.benefits {
    padding-top: 80px;
}

/* ===========================
   BENEFICIOS
=========================== */

.benefits {
    padding-top: 80px;
    padding-bottom: 100px;
}

.benefits h2 {
    text-align: center;
    color: #EF7911;
    font-size: 2.5rem;
    margin-bottom: 70px;
    line-height: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 90px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1.1;
}

.benefit-item p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-button {
    text-align: center;
    margin-top: 80px;
}

.benefits .btn {
    display: inline-block;
    padding: 14px 70px;
    background-color: #EF7911;
    color: #FFFFFF;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefits .btn:hover {
    background-color: #EF7911;
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .benefits h2 {
        font-size: 3rem;
        margin-bottom: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .benefit-item {
        text-align: center;
    }

    .benefit-item h3 {
        font-size: 1.8rem;
    }

    .benefits .btn {
        font-size: 1.5rem;
        padding: 12px 45px;
    }
}

/* ===================================
   SERVICIOS
=================================== */

.services-menu {
    padding: 100px 0;
}

.services-menu .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.services-menu .section-title h1 {
    font-size: 2.5rem;
    color: #EF7911;
    margin-bottom: 25px;
    line-height: 1;
}

.services-menu .section-divider {
    margin: 0 auto;
}

.services-menu .section-title p {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 50px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-decoration: none;
    text-align: center;
    color: inherit;
    display: block;
    transition: transform 0.35s ease;
}

.service-card img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    transition: transform 0.35s ease;
}

.service-card h3 {
    font-size: 1.7rem;
    color: #EF7911;
    font-weight: 700;
    line-height: 1.3;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Último elemento centrado automáticamente */
.service-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .service-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .services-menu .section-title h1 {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card img {
        max-width: 220px;
    }

    .services-menu .section-title h1 {
        font-size: 2.5rem;
    }
}

/* ===================================
   GALERÍA
=================================== */

.gallery {
    padding: 100px 0;
}

.gallery .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.gallery .section-title h1 {
    font-size: 2.5rem;
    color: #EF7911;
    margin-bottom: 25px;
    line-height: 1;
}

.gallery .section-title p {
    max-width: 850px;
    margin: 0 auto 35px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.gallery .section-divider {
    margin: 0 auto;
}

/* Masonry estilo Pinterest */
.gallery-grid {
    columns: 4 280px;
    column-gap: 25px;
}

.gallery-item {
    position: relative;
    display: block;
    margin-bottom: 25px;
    border-radius: 18px;
    overflow: hidden;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: transform 0.4s ease;
    cursor: pointer;
}


.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .gallery .section-title h1 {
        font-size: 3rem;
    }

    .gallery-grid {
        columns: 3 220px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2 180px;
        column-gap: 18px;
    }
}

@media (max-width: 576px) {
    .gallery .section-title h1 {
        font-size: 2.5rem;
    }

    .gallery .section-title p {
        font-size: 1rem;
    }

    .gallery-grid {
        columns: 1;
    }
}

/* ===================================
   EXPOSICIONES
=================================== */

.exhibitions {
    padding: 100px 0;
}

.exhibitions .section-title {
    text-align: center;
    margin-bottom: 90px;
}

.exhibitions .section-title h1 {
    font-size: 2.5rem;
    color: #EF7911;
    margin-bottom: 25px;
    line-height: 1;
}

.exhibitions .section-title p {
    max-width: 850px;
    margin: 0 auto 35px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.exhibitions-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.exhibition-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exhibition-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.exhibition-content h2 {
    font-size: 3rem;
    color: #EF7911;
    margin-bottom: 25px;
}

.exhibition-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
}

.exhibition-clients {
    margin-bottom: 40px;
}

.exhibition-clients h3 {
    color: #EF7911;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.exhibition-clients ul {
    list-style: none;
    padding: 0;
}

.exhibition-clients li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05rem;
}

.exhibition-clients li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #EF7911;
    font-size: 1.6rem;
    line-height: 1;
}

.exhibition-content .btn {
    display: inline-block;
    padding: 14px 50px;
    background: #EF7911;
    color: #fff;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.exhibition-content .btn:hover {
    background: #EF7911;
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .exhibition-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exhibition-content {
        text-align: center;
    }

    .exhibition-clients ul {
        display: inline-block;
        text-align: left;
    }

    .exhibition-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .exhibitions .section-title h1 {
        font-size: 2.8rem;
    }

    .exhibition-content h2 {
        font-size: 2rem;
    }
}

/* ===================================
   CONTACTO
=================================== */

.contact {
    padding: 100px 0;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.contact .section-title h1 {
    font-size: 2.4rem;
    color: #EF7911;
    margin-bottom: 25px;
    line-height: 1;
}

.contact .section-title p {
    max-width: 850px;
    margin: 0 auto 35px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.whatsapp-card {
    text-align: center;
    position: sticky;
    top: 120px;
}

.contact-icon img {
    width: 120px;
    margin-bottom: 30px;
}

.whatsapp-card h2,
.form-card h2 {
    color: #EF7911;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.whatsapp-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact .btn {
    display: inline-block;
    width: 100%;
    padding: 18px 35px;
    background: #EF7911;
    color: #FFFFFF;
    border: none;
    border-radius: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .btn:hover {
    background: #EF7911;
    transform: translateY(-3px);
}

/* Formulario */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EF7911;
    box-shadow: 0 0 0 4px rgba(239, 121, 17, 0.12);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 70px 0;
    }

    .contact .section-title h1 {
        font-size: 2.8rem;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .whatsapp-card h2,
    .form-card h2 {
        font-size: 2rem;
    }

    .btn {
        font-size: 1.2rem;
    }
}

/* ============================================
   SERVICIOS
============================================ */

.service-hero {
    padding: 110px 0 80px;
    background: linear-gradient(135deg, #071C3C 0%, #0D2E5E 100%);
    color: #fff;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-description {
    padding-top: 120px;
}

.service-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.service-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.service-hero-image img {
    width: 100%;
    border-radius: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 38px;
    background-color: #EF7911;
    color: #FFFFFF;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d96c0f;
    transform: translateY(-3px);
}

.section-title h2 {
    font-size: 2.5rem;
    color: #EF7911;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.description-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    padding: 25px;
    background: #EF7911;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
}

.service-specifications {
    padding-top: 120px;
    padding-bottom: 120px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.spec-card {
    padding: 35px;
    background: #EF7911;
    color: #fff;
    border-radius: 25px;
}

.spec-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.spec-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .service-hero-content,
    .description-grid,
    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        text-align: center;
    }
}
