@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    --c-dark: #000000;
    --c-brand: #ff8a12;
    --c-brand-light: #f9f15f;
    --c-brand-rgb: 255, 138, 18;
    --c-body: #727272;
    --c-light: #ffffff;
    --font-base: "Open Sans", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

.dark-theme {
    --c-dark: #ffffff;
    --c-body: #dcd6d6;
    --c-brand: #ff8a12;
    --c-brand-light: #f9f15f;
    --c-light: #2d2c2c;
    --box-shadow: 0px 15px 25px rgba(255, 255, 255, 0.1);
    --c-brand-rgb: 255, 138, 18;
}

body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
    background-color: var(--c-light);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
    color: var(--c-dark);
}

.titleBrand {
    text-shadow: 1px 0 #ffffff, -1px 0 #ffffff, 0 1px #ffffff, 0 -1px #ffffff,
        1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.logo {
    height: 55px;
}

.logoFooter {
    height: 32px;
}

.textLogo {
    color: var(--c-brand);
    font-weight: bold;
    font-size: 1.5rem;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

.image-zoom {
    position: relative;
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}


.navbar {
    box-shadow: var(--box-shadow);
    background-color: var(--c-light);

}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
    align-items: center;

}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}

.navbar-nav .nav-link:hover {
    color: var(--c-brand);
    text-decoration: underline;
}

.navbar-nav {
    align-items: center;

}

.navbar-toggler {
    background-color: var(--c-brand);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    --light: #d8dbe0;
    --dark: #28292c;
    --link: rgb(27, 129, 112);
    --link-hover: rgb(24, 94, 82);
    margin-left: 1rem;
}

.switch-label {
    position: absolute;
    width: 100%;
    height: 30px;
    background-color: var(--dark);
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid var(--dark);
}

.checkbox {
    position: absolute;
    display: none;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.checkbox:checked~.slider {
    background-color: var(--light);
}

.slider::before {
    content: "";
    position: absolute;
    top: 2.5px;
    left: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-box-shadow: inset 8px -3px 0px 0px var(--light);
    box-shadow: inset 8px -3px 0px 0px var(--light);
    background-color: var(--dark);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.checkbox:checked~.slider::before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    background-color: var(--dark);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: black;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: black;
}


#hero {
    background-position: center;
    background-size: cover;
    animation: changeImage 7s infinite;
}

@keyframes changeImage {
    0% {
        background-image: url('../images/banner-eventex-2.png');
    }

    50% {
        background-image: url('../images/banner-eventex-3.png');
    }

    66% {
        background-image: url('../images/banner-eventex-3.png');
    }

    100% {
        background-image: url('../images/banner-eventex-2.png');
    }
}

.logo {
    width: 150px;
    transition: opacity 0.3s ease;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.dark-theme .logo-light {
    display: none;
}

.dark-theme .logo-dark {
    display: block;
}


.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contactoTitulo {
    text-shadow: 2px 0 #000000, -2px 0 #000000, 0 2px #000000, 0 -2px #000000,
        1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
}


.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 250px;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}


.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: rgb(255, 255, 255);
}

.service:hover a {
    color: white;
    text-decoration: underline;
}

.service:hover .iconbox {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
}

#counter h1 {
    font-weight: bold;
    font-size: 70px;
}

.portfolio-item .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item:hover .iconbox {
    opacity: 1;
    top: 50%;
}

.review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: var(--c-light);
    transform: rotate(45deg);
}

.rounded-circle {
    height: 6rem;
    width: 6rem;
    object-fit: contain;
}

.team-member-content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    padding: 24px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content {
    opacity: 1;
    bottom: 24px;
}


.teamMember {
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 610px;
}



.cargo {
    color: var(--c-brand);
    font-weight: bold;
    font-size: 17px !important;
}

.teamCard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

#contacto {
    position: relative;
    z-index: 2;
}

#contacto::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contacto .form-control {
    border-radius: 0;
}

#contacto .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
}

footer {
    padding-top: 120px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,
footer p,
footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

.link-portafolio {
    color: var(--c-brand);
    margin-bottom: 2rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.social-icons a i {
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: var(--c-brand);
    color: white;
}

.social-icons {
    padding-top: 1rem;
}

.brandName {
    color: white;
    font-size: 25px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 2.5rem;
}

.linkChat i {
    color: #7d4002;
    text-decoration: none;
    border-radius: 50%;
    background-color: white;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.linkChat i:hover {
    color: #f9f15f;
    text-decoration: none;
    background-color: white;
    border-radius: 50%;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.whatsapp-message {
    position: fixed;
    bottom: calc(20px + 70px);
    right: 20px;
    background-color: var(--c-brand);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 20px;
    display: none;
    z-index: 999;
}

.whatsapp-message.show {
    display: block;
}

.owl-1 .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
}

.owl-1 .owl-nav .owl-next,
.owl-1 .owl-nav .owl-prev {
    border: 1px solid red;
    z-index: 92;
    position: absolute;
    top: 50%;
}

.owl-1 .owl-nav .owl-next:active,
.owl-1 .owl-nav .owl-next:focus,
.owl-1 .owl-nav .owl-prev:active,
.owl-1 .owl-nav .owl-prev:focus {
    outline: none;
}

.owl-1 .owl-nav .owl-next span,
.owl-1 .owl-nav .owl-prev span {
    color: #fff;
}

.owl-1 .owl-nav .owl-next span:before,
.owl-1 .owl-nav .owl-prev span:before {
    font-size: 40px !important;
}

.owl-1 .owl-nav .owl-next {
    border: 4px solid blue;
    right: 20px;
}

.owl-1 .owl-nav .owl-prev {
    left: 20px;
}

.owl-1 .owl-dots {
    position: absolute;

    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-1 .owl-dots .owl-dot {
    background: none;
    display: inline-block;
}

.owl-1 .owl-dots .owl-dot>span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 4px;
}

.owl-1 .owl-dots .owl-dot.active>span {
    background: var(--c-brand);
}

.owl-1 .owl-dots .owl-dot:active,
.owl-1 .owl-dots .owl-dot:focus {
    outline: none;
}

.media-29101 .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-29101 .text {
    padding: 20px;
}

@media (max-width: 991.98px) {
    .media-29101 .text {
        padding: 20px;
        width: 100%;
    }

    .titleBrand{
        text-shadow: 0.5px 0 #000000, -0.5px 0 #000000, 0 0.5px #000000, 0 -0.5px #000000,
                 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
    }
}

.media-29101 .text .category {
    color: var(--c-brand);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .2rem;
}

.media-29101 .text h2 {
    font-family: "Playfair Display", times, serif;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.media-29101 .text h2 a {
    color: var(--c-dark)
}

.carousel-nav {
    width: 100%;
    border-bottom: 1px var(--c-brand);
    margin-bottom: 40px;
    white-space: nowrap;
    overflow-x: auto;
    display: flex; 
    justify-content: space-between;
}

.carousel-nav a {
    color: var(--c-dark);
    text-align: center;
    display: inline-block;
    flex: 1; 
    margin-right: 10px;
    padding: 10px 0;
    box-sizing: border-box;
}



.carousel-nav a:hover {
    color: var(--c-brand-light);
}

.carousel-nav a.active {
    color: var(--c-brand);
}

.carousel-nav a.active:before {
    content: "";
    bottom: -1px;
    left: 0;
    right: 0;
    position: absolute;
}

.textoTeam p {
    border-bottom: 1px solid var(--c-brand); 
    padding-bottom: 10px; 
    margin-bottom: 10px; 
    width: 90%; 
    margin: 0 auto 10px auto;
    font-size: 13px;
}
.ubicacion {
    display: block; 
    margin-top: 5px; 
    font-style: italic; 
}

.textoTeam p:last-child {
    border-bottom: none; 
}

.textoTeam {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
}

.textoTeam h5{
    font-weight: bold;
}

.nameProduct {
    color: var(--c-brand);
    font-weight: bold;
    padding-top: 5px;
}

.catalogoCard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.productCatalogo {
    height: 250px;
    width: 250px;
}

.imgCatalogo {
    height: 200px;
}

.teamMember {
  height: auto !important;     
  overflow: visible !important; 
  display: flex;
  flex-direction: column;
  border-radius: 16px;          
  background: var(--c-light);   
}

.teamMember > div:first-child img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;            
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}


.textoTeam {
  padding: 1rem 1.25rem;        
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.teamCard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;     
  gap: 2rem;
}

.teamCard > [class*="col-"] {
  flex: 1 1 320px;              
  max-width: 520px;            
}

.textoTeam .cargo {
  font-weight: 700;
  color: var(--c-brand);
}
.textoTeam .ubicacion {
  color: var(--c-body);
  opacity: .9;
}

@media (max-width: 575.98px) {
  .textoTeam { padding: .9rem 1rem 1.1rem; }
}

#contacto .contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
  color: black !important;
}

#contacto .text-brand {
  color: black;
}

#contacto .social-icons a {
  width: 45px;
  height: 45px;
  margin: 0 5px;
  color: black;
  background-color: rgba(var(--c-brand-rgb), 0.1);
  transition: var(--transition);
}

#contacto .social-icons a:hover {
  background-color: black;
  color: #ffa600;
}

#mapa-operaciones .mapa-frame {
  position: relative;
  aspect-ratio: 16 / 9;                 
  width: 100%;
  max-width: 880px;                     
  max-height: clamp(220px, 45vh, 420px); 
  margin: 0 auto;
  overflow: hidden;                     
  background: var(--c-light);            
  border-radius: 12px;
}

#mapa-operaciones .mapa-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;                   
  object-position: center;
  display: block;
}

#mapa-operaciones .mapa-img--dark { display: none; }

.dark-theme #mapa-operaciones .mapa-img--light { display: none; }
.dark-theme #mapa-operaciones .mapa-img--dark  { display: block; }

@media (max-width: 991.98px) {
  #mapa-operaciones .mapa-frame {
    max-width: 100%;
    max-height: clamp(200px, 38vh, 360px);
  }
}
@media (max-width: 575.98px) {
  #mapa-operaciones .mapa-frame {
    max-height: clamp(180px, 34vh, 300px);
  }
}
