@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET Y ESTILOS GENERALES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Red Hat Text', sans-serif;
}

body {
  min-height: 100vh;
  background-color: #4b4b4b !important;
  color: #fff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* VIDEO DE FONDO */
.bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -1;
  min-width: 100%; 
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: 0.2s ease;
}

a:hover {
  color: rgb(233, 90, 90);
}

/* HEADER Y NAVBAR */
header {
  position: relative;
  padding: 0 2rem;
  z-index: 1000;
}

.navbar {
  width: 100%;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.navbar .links {
  display: flex;
  gap: 2rem;
}

.navbar .links a.active {
  color: #db0000;
  font-weight: bold;
}

.navbar .toggle_btn {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* MENÚ DESPLEGABLE */
.dropdown_menu {
  display: none; 
  position: absolute;
  right: 2rem;
  top: 80px;
  width: 300px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
}

.dropdown_menu li {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown_menu li:last-child {
  border-bottom: none;
}

.dropdown_menu a {
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}

/* CONTENIDO PRINCIPAL (WRAPPER) */
.wrapper {
    margin: 120px auto 60px auto;
    color: #fff;
    padding: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 100%;
    min-height: 60vh;
}

.wrapper .saludo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.wrapper .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wrapper .content .intro {
    width: auto;
    margin: 0.5rem 0;
    font-weight: 300;
    font-size: 1.8rem;
}

.wrapper .content ol {
    list-style: none;
    position: relative;
    height: 4rem; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.wrapper .content ol li {
    position: absolute;
    top: 0;
    white-space: nowrap;
    opacity: 0;
    animation: simple-fade 12s infinite;
    font-size: 2.5rem;
}

.wrapper .content ol li:nth-child(1) { 
    animation-delay: 0s; 
}

.wrapper .content ol li:nth-child(2) { 
    animation-delay: 6s; 
}

.wrapper .content ol li span {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: #fff;
    border-right: .4rem solid #db0000;
    display: inline-block;
    overflow: hidden;
    width: 0;
    animation: cursor .8s step-end infinite, typing 6s steps(30) infinite;
}

.wrapper .slogan {
    width: 85vw;
    max-width: 600px;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 300;
}

/* --- SECCIÓN UNIFICADA DE BOTONES (INDEX Y CONTACTO) --- */
.btn-card, .wrapper button {
    display: inline-block;
    padding: .8rem 2rem;
    background-color: #db0000;
    color: #fff;
    border: 2px solid #db0000;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 20;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(219, 0, 0, 0.3);
    outline: none;
    margin-top: 1.5rem;
}

.btn-card:hover, .wrapper button:hover {
    background-color: transparent;
    border-color: #db0000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219, 0, 0, 0.5);
}

.btn-card:active, .wrapper button:active {
    transform: translateY(2px) scale(0.95);
    box-shadow: 0 2px 5px rgba(219, 0, 0, 0.2);
    filter: brightness(0.8);
}

/* ESTILOS DEL FOOTER */
.main-footer {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem 1.5rem;
    border-top: 2px solid #db0000;
    width: 100%;
    margin-top: auto;
    clear: both;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand {
    color: #db0000; /* CAMBIO: Nombre en rojo */
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: translateY(-3px);
}

.footer-box h4 {
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer-box h4 i {
    margin-right: 12px;
    color: #db0000;
}

.footer-box p, .footer-box li {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.social-links i {
    color: #db0000;
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-links a:hover {
    color: #db0000;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #666;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .navbar .links { display: none; }
  .navbar .toggle_btn { display: block; }
  
  .dropdown_menu {
    display: block;
    height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .dropdown_menu.open {
    height: auto;
    padding-bottom: 10px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 576px) {
  .wrapper .saludo { 
    font-size: 2rem; 
}
  .wrapper .content .intro { 
    font-size: 1.2rem; 
}
  .wrapper .content ol li { 
    font-size: 1.5rem; 
}
  .footer-container { 
    text-align: center; 
}
  .social-links a { 
    justify-content: center; 
}
  .footer-box h4 { 
    justify-content: center; 
}
  .footer-logo-container { 
    display: flex; 
    justify-content: center; 
}
  .social-links i, .footer-box h4 i { 
    margin-right: 10px; 
  }
}

/* ANIMACIONES */
@keyframes simple-fade { 
    0%, 48% { 
        opacity: 1; z-index: 1; 
    } 49%, 100% { 
        opacity: 0; 
        z-index: 0; 
    } 
}
@keyframes cursor { 
    50% { 
        border-color: transparent; 
    } 
}
@keyframes typing { 
    0%, 10% { 
        width: 0; 
    } 45%, 60% { 
        width: 100%; 
    } 90%, 100% { 
        width: 0; 
    } 
}

/* SERVICIOS (CARDS) */
.services-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.services-header p {
    font-size: 1.2rem;
    color: #ddd;
    font-weight: 300;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 20px 0;
}

.service-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #db0000;
}

.service-card:hover h3 {
    color: #db0000;
    transition: 0.3s;
}

.service-icon {
    font-size: 3rem;
    color: #db0000;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(219, 0, 0, 0.2);
    color: #ff4d4d;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-image {
    width: 100%;
    height: 180px; 
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px; 
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1); 
}

/* GALERÍA */
.gallery-section { 
    padding: 80px 2rem;
    max-width: 1200px; 
    margin: 0 auto; 
    min-height: 60vh;
}

.gallery-header { 
    text-align: center; 
    margin-bottom: 3rem; 
}

.gallery-header h1 { 
    font-size: 3rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 1rem;
    color: #fff; 
}

.gallery-header p {
    font-size: 1.2rem;
    color: #ddd;
    font-weight: 300;
}

.mosaic-container { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
}
.mosaic-item { 
    position: relative; 
    aspect-ratio: 1 / 1; 
    overflow: hidden; 
    background: #000; 
    border-radius: 4px; 
    cursor: pointer; 
}
.mosaic-item img, .mosaic-item video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.6s ease; 
}

.overlay, .video-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    transition: 0.3s ease; 
}

.overlay { 
    background: rgba(0, 0, 0, 0.4); 
    opacity: 0; 
}

.video-overlay { 
    background: rgba(0, 0, 0, 0.2); 
    opacity: 1; 
}

.video-overlay i { 
    font-size: 3.5rem; 
    color: #fff; 
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5)); 
}

.overlay i { 
    color: #fff; 
    font-size: 2rem; 
}

.mosaic-item:hover .overlay { 
    opacity: 1; 
}
.mosaic-item:hover img { 
    transform: scale(1.05); 
}

/* LIGHTBOX */
.lightbox { 
    display: none; 
    position: fixed; 
    z-index: 10001; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.95); 
    justify-content: center; 
    align-items: center; 
    backdrop-filter: blur(8px); 
}

.lightbox-content { 
    max-width: 90%; 
    max-height: 85vh; 
    display: flex; 
    justify-content: center; 
}

.lightbox-content img, .lightbox-content video { 
    max-width: 100%; 
    max-height: 85vh; 
    border: 2px solid #333; 
    border-radius: 8px; 
    box-shadow: 0 0 40px rgba(0,0,0,1); 
}

.close-lightbox { 
    position: absolute; 
    top: 20px; 
    right: 40px; 
    color: #fff; 
    font-size: 50px; 
    cursor: pointer; 
    transition: 0.3s; 
    z-index: 10002; 
}

.close-lightbox:hover { 
    color: #db0000; 
}

/* SOBRE NOSOTROS */
.about-page { 
    width: 100%; 
    overflow: hidden; 
}

.about-hero { 
    padding: 80px 20px; 
    text-align: center; 
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper { 
    flex: 1; 
    min-width: 300px; 
    max-width: 450px; 
    position: relative; 
}

.about-img { 
    width: 100%; 
    height: auto; 
    border-radius: 15px; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.5); 
    border: 1px solid #db0000; 
}

.about-description { 
    flex: 1; 
    min-width: 300px; 
    text-align: left; 
}

.about-description h2 { 
    font-size: 2.5rem; 
    color: #db0000; 
    margin-bottom: 20px; 
    font-family: 'Montserrat', sans-serif; 
}

.quote-box { 
    border-left: 4px solid #db0000; 
    background: rgba(255, 255, 255, 0.05); 
    padding: 15px 20px; 
    margin: 20px 0; 
    font-style: italic; 
}

.experience-badge { 
    position: absolute; 
    bottom: -10px; 
    right: -10px; 
    background: #db0000; 
    padding: 10px 15px; 
    border-radius: 8px; 
    text-align: center; 
}

/* PRÓXIMAMENTE */
.coming-soon-container { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    min-height: 50vh; 
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.coming-soon-card h2 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 2.2rem; 
    color: #fff; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.coming-soon-card p { 
    font-size: 1.1rem; 
    color: #bbb; 
    line-height: 1.8; 
    margin-bottom: 30px; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

.coming-soon-divider { 
    height: 2px; 
    width: 50px; 
    background: #db0000; 
    margin: 0 auto 30px auto; 
}

.coming-soon-footer { 
    color: #fff; 
    font-weight: 300; 
    font-style: italic; 
}

.btn-instagram { 
    margin-top: 20px; 
    text-transform: none !important; 
    font-weight: 500; 
    font-size: 1rem; 
    display: inline-block; 
}

/* CONTACTO */
.contact-container { 
    max-width: 1000px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 40px; 
    padding: 20px; 
}

.contact-info { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.info-item { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 25px; 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    transition: 0.3s; 
}

.info-item:hover { 
    border-color: #db0000; 
    transform: translateX(10px); 
}

.info-item i { 
    font-size: 2rem; 
    color: #db0000; 
}

.info-item h4 { 
    color: #fff; 
    margin-bottom: 5px; 
    font-family: 'Montserrat', sans-serif; 
}

.info-item p { 
    color: #bbb; 
}

.contact-form { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

.form-group { 
    margin-bottom: 20px; 
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus { 
    border-color: #db0000; 
}

/* RESPONSIVE FINAL */
@media (max-width: 992px) { 
    .mosaic-container { 
        grid-template-columns: repeat(3, 1fr); 
    } 
}
@media (max-width: 850px) { 
    .contact-container { 
        grid-template-columns: 1fr; 
    } 
}
@media (max-width: 768px) { 
    .services-header h1 { 
        font-size: 2.2rem; 
    } .services-container { 
        grid-template-columns: 1fr; 
    } .mosaic-container { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}
@media (max-width: 576px) { 
    .coming-soon-card { 
        padding: 40px 20px; 
        margin: 20px; 
    }
    .coming-soon-card h2 { 
        font-size: 1.5rem; 
    }
    .footer-container { 
        text-align: center; 
    }
    .social-links a { 
        justify-content: center; 
    }
    .footer-box h4 { 
        justify-content: center; 
    }
}
@media (max-width: 480px) { 
    .mosaic-container { 
        grid-template-columns: 1fr; 
    } 
}

/* Estilos Widget WhatsApp */
#whatsapp-widget { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 10000; 
    font-family: sans-serif; 
}

.wa-float-btn { 
    width: 60px; 
    height: 60px; 
    background: #25d366; 
    border-radius: 50%; 
    border: none; 
    cursor: pointer; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    transition: 0.3s; 
}

.wa-float-btn:hover { 
    transform: scale(1.1); 
}

.wa-float-btn img { 
    width: 35px; 
}

#wa-chat-box { 
    width: 300px; 
    background: #e5ddd5; 
    border-radius: 10px; 
    margin-bottom: 15px; 
    box-shadow: 0 5px 25px rgba(0,0,0,0.2); 
    overflow: hidden; 
    transform: translateY(20px); 
}

.wa-header { 
    background: #075e54; 
    color: white; 
    padding: 12px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.wa-user { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: bold; 
}

.wa-body { 
    padding: 15px; 
}

.wa-body p { 
    background: white; 
    padding: 10px; 
    border-radius: 0 10px 10px 10px; 
    margin: 0; 
    font-size: 14px; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.1); 
}

.wa-footer { 
    padding: 10px; 
    display: flex; 
    gap: 5px; 
    background: white; 
}

.wa-footer input { 
    flex: 1; 
    padding: 8px; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    outline: none; 
}

.wa-footer button { 
    background: #075e54; 
    color: white; 
    border: none; 
    padding: 5px 12px; 
    border-radius: 5px; 
    cursor: pointer; 
}