@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
p
{
font-weight: 300;
color: #111;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  gap: 5px; /* Espacio entre imagen y texto */
}

.logo-img {
  width: 45px; /* Ajusta según tamaño del logo */
  height: auto;
}
@media (max-width: 600px) {
  .logo-img {
    width: 45px; /* Ajusta según tamaño del logo en Movil-Celular */
  }

  .logo {
    font-size: 18px;
  }
}

.banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(images/3-new.png);
    background-size: cover;
}

.banner .content
{
    max-width: 900px;
    text-align: center;
}

.banner .content h2
{
    font-size: 2em;
    color: #fff;
}

.banner .content p
{
    font-size: 1em;
    color: #fff;
}
.btn
{
    font-size: 1em;
    color: #fff;
    background: #a31515;
    display: inline-block;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}
.btn:hover
{
letter-spacing: 6px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.sticky
{
    background: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

header .logo{
 font-weight: 700;
 color: #fff;
 text-decoration: none;
 font-size: 2em;
}

header.sticky .logo
{
    color: #111;
}

header .logo span{
    color: #ff0157;
}

header .navigation
{
    position: relative;
    display: flex;
}

header .navigation li
{
    list-style: none;
    margin-left: 30px;
}

header .navigation li a
{
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}

header.sticky .navigation li a
{
    color: #111;
}

header .navigation li a:hover
{
    color: #a31515;
}

section
{
    
    padding: 100px;
}


.row
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.row .col50
{
    position: relative;
    width: 48%;
}

.titleText
{
    color: #111;
    font-size: 2em;
    font-weight: 300;
}

.titleText span
{
    color: #FBB000;
    font-size: 1.5em;
    font-weight: 700;
}

.row .col50 .imgBx
{
position: relative;
width: 100%;
/*min-height: 300px;*/
height: 100%;
}

.row .col50 .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title p
{
    text-align: justify;
}
.menu .content
{
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-top: 40px;
}

.menu .content .box
{
    width: 340px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}

.menu .content .box .imgBx
{
    position: relative;
    width: 100%;
    height: 300px;
}

.menu .content .box .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu .content .box .text
{
    padding: 15px 0 5px;
}

.menu .content .box .text h3
{
    font-weight: 400;
    color: #111;
}

.expert .content
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 40px;
}

.expert .content .box
{
    width: 250px;
    margin: 15px;
}

.expert .content .box .imgBx
{
    position: relative;
    width: 100%;
    height: 300px;
}

.expert .content .box .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert .content .box .text
{
 padding: 15px 0 5px;
 color: #111;
}
.testimonials
{
 background: url(images/bgtestimonial.png);
 background-size: cover;
}

.white .titleText,
.white p
{
    color: #fff;
}

.testimonials .content
{
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 flex-direction: row;
 margin-top: 40px;
}

.testimonials .content .box
{
 width: 340px;
 margin: 20px;
 padding: 40px;
 background: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
}

.testimonials .content .box .imgBx
{
 position: relative;
 width: 100px;
 height: 100px;
 margin-bottom: 1px;
 border-radius: 20%;
 overflow: hidden;
}

.testimonials .content .box .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .content .box .text
{
 text-align: center;
}

.testimonials .content .box .text p
{
    color: #666;
    font-style: italic;
}

.testimonials .content .box .text h3
{
    margin-top: 5px;
    color: #111;
    font-size: 1em;
    color: #a31515;
    font-weight: 600;
}

 .contact
{
    margin-top: 0;
    padding-top: 0px; 
} 

.contactForm
{
    
    margin-left: 300px;
    padding: 75px 50px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-top: 50px;
}

.contactForm h3
{
    color: #111;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
}

.contactForm .inputBox
{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    list-style: none;
    text-decoration: none;
}

.contactForm .inputBox li
{
    margin-top: 10px;
}

.contactForm .inputBox li a
{
    color: #111;
    text-decoration: none;
   
}

.contactForm .inputBox li a span
{
    margin-left: 3px;
   
}

.copyrightText
{
    padding: 8px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.copyrightText p
{
    color: #333;
}

.copyrightText a
{
    color: #a31515;
    font-weight: 500;
    text-decoration: none;
}

@media (max-width: 991px)
{
    header,
    header.sticky 
    {
        padding: 10px 20px;
    }
    header .navigation
    {
        display: none;
    }

    header .navigation.active
    {
    width: 100%;
    height: calc(100% - 68px);
    position: fixed;
    top: 68px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    }
    header .navigation li
    {
        margin-left: 0;
    }
    header .navigation li a
    {
        
        color: #111;
        font-size: 1.6em;
        
    }
    .menuToggle
    {
        position: relative;
        width: 40px;
        height: 40px;
        background: url(images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }
    .menuToggle.active
    {
        background: url(images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
    header.sticky  .menuToggle
    {
     filter: invert(1);
    }
    section
    {
        padding: 20px;
    }
    .banner .content h2
    {
        font-size: 3em;
        color: #fff;
    }
    .row
    {
        flex-direction: column;
    }
    .row .col50
    {
        position: relative;
        width: 100%;
    }
    .row .col50 .imgBx
    {
        height: 300px;
        margin-top: 20px;
    }
    .menu .content
    {
        margin-top: 20px;
    }
    .menu .content .box
    {
        margin: 10px;
    }
    .menu .content .box .imgBx
    {
        height: 260px;
    }
    .title
    {
        text-align:center;
    }
    
    
    .titleText
    {
        font-size: 1.8em;
        line-height: 1.5em;
        margin-bottom: 15px;
        font-weight: 300;
    }
    .testimonials .content .box
    {
    margin: 10px;
    padding: 20px;
    }
    .contactForm
    {
    padding: 35px 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 15px;
    }
}

@media (max-width: 480px)
{
    .banner .content h2
    {
        font-size: 2.2em;
        color: #fff;
    }
}

.slider-wrapper {
  display: flex;
  justify-content: center;
  padding: 10px 0; /* espacio arriba y abajo del slider */
  margin-top: 0;

}

.slider {

      position: relative;
      width: 100%;
      max-width: 600px;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      pointer-events: none;
    }

    .slider img.active {
      opacity: 1;
      position: relative;
      pointer-events: auto;
    }

    .slider button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      color: white;
      border: none;
      padding: 10px 14px;
      font-size: 24px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 2;
    }

    .slider .prev {
      left: 10px;
    }

    .slider .next {
      right: 10px;
    }

    .slider .dots {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      z-index: 2;
    }

    .slider .dot {
      height: 12px;
      width: 12px;
      margin: 0 4px;
      background-color: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .slider .dot.active {
      background-color: white;
    }

    @media (max-width: 480px) {
      .slider button {
        font-size: 18px;
        padding: 8px 12px;
      }
    }