 /* --- VARIABLES CSS (THEME) --- */
 
 @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Smooch+Sans:wght@100..900&display=swap');
 :root {
     --color-bg-main: #f8fafc;
     /* slate-50 */
     --color-bg-secondary: #f1f5f9;
     /* slate-100 */
     --color-text-primary: #0f172a;
     /* slate-900 */
     --color-text-secondary: #475569;
     /* slate-600 */
     --color-text-muted: #64748b;
     /* slate-500 */
     --color-border: #e2e8f0;
     /* slate-200 */
     --color-white: #ffffff;
     --color-dark: #020617;
     /* slate-950 */
     --color-dark-light: #1e293b;
     /* slate-800 */
     --font-main: 'Inter', sans-serif;
     --container-max-width: 1280px;
     --section-padding: 5rem 1rem;
     /* py-20 px-4 equivalent aprox */
 }
 /* --- RESET BÁSICO & GLOBAL --- */
 
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }
 
 html {
     scroll-behavior: smooth;
 }
 
 body {
     font-family: var(--font-main);
     background-color: var(--color-bg-main);
     color: var(--color-text-primary);
     line-height: 1.5;
 }
 
 img {
     max-width: 100%;
     height: auto;
     display: block;
 }
 
 a {
     text-decoration: none;
     color: inherit;
 }
 
 ul {
     list-style: none;
 }
 
 button,
 input,
 textarea {
     font-family: inherit;
 }
 /* --- UTILIDADES --- */
 
 .container {
     max-width: var(--container-max-width);
     margin-left: auto;
     margin-right: auto;
     padding-left: 1rem;
     padding-right: 1rem;
 }
 
 .hidden {
     display: none !important;
 }
 
 .flex {
     display: flex;
 }
 
 .items-center {
     align-items: center;
 }
 
 .justify-between {
     justify-content: space-between;
 }
 
 .justify-center {
     justify-content: center;
 }
 
 .flex-col {
     flex-direction: column;
 }
 
 .grid {
     display: grid;
 }
 
 .text-center {
     text-align: center;
 }
 
 .uppercase {
     text-transform: uppercase;
 }
 
 .font-bold {
     font-weight: 700;
 }
 
 .font-black {
     font-weight: 900;
 }
 /* --- COMPONENTES ESPECÍFICOS --- */
 /* NAV */
 
 .navbar {
     position: fixed;
     width: 100%;
     z-index: 50;
     background-color: rgb(0 0 0 / 65%);
     backdrop-filter: blur(21px);
     border-bottom: 1px solid rgb(0 104 202 / 12%);
 }
 
 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 5rem;
     /* h-20 */
 }
 
 .logo {
     font-size: 1.5rem;
     font-weight: 900;
     color: var(--color-white);
     letter-spacing: -0.05em;
     display: flex;
     align-items: center;
 }
 
 .logo img {
     width: 30vh;
 }
 
 .desktop-menu {
     display: none;
     gap: 2rem;
     align-items: center;
 }
 
 .desktop-menu a {
     color: #cbd5e1;
     /* slate-300 */
     font-size: 0.875rem;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     transition: color 0.3s;
 }
 
 .desktop-menu a:hover {
     color: var(--color-white);
 }
 
 .btn-cotizar-nav {
     background-color: #0073ff;
     color: var(--color-dark);
     padding: 0.625rem 1.25rem;
     border-radius: 4.25rem;
     font-weight: 700;
     transition: background-color 0.3s;
 }
 
 .btn-cotizar-nav:hover {
     background-color: #46f363;
 }
 
 .mobile-menu-btn {
     background: none;
     border: none;
     cursor: pointer;
     color: #cbd5e1;
     padding: 0.5rem;
 }
 
 .mobile-menu {
     background-color: var(--color-dark);
     padding-bottom: 1rem;
     padding-left: 1rem;
     padding-right: 1rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .mobile-menu a {
     display: block;
     padding: 0.75rem 0;
     color: #cbd5e1;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
 /* HERO */
 
 .hero-section {
     position: relative;
     padding-top: 8rem;
     padding-bottom: 5rem;
     min-height: 90vh;
     display: flex;
     align-items: center;
     background-color: var(--color-dark);
     overflow: hidden;
     color: var(--color-white);
 }
 
 .hero-bg-slider {
     position: absolute;
     inset: 0;
     opacity: 0.3;
 }
 
 .hero-slide {
     position: absolute;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: opacity 1s ease-in-out;
 }
 
 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, #000000, rgb(2 6 23 / 6%), rgba(2, 6, 23, 0.4));
     z-index: 10;
 }
 
 .hero-content {
     position: relative;
     z-index: 20;
     display: flex;
     flex-direction: column;
     gap: 3rem;
 }
 
 .hero-text h1 {
     font-size: 2.5rem;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
 }
 
 .hero-text p {
     font-size: 1.25rem;
     color: #cbd5e1;
     margin-bottom: 2rem;
     max-width: 65ch;
 }
 
 .hero-buttons {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }
 
 .btn-primary,
 .btn-secondary {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 1rem 2rem;
     border-radius: 0.375rem;
     font-weight: 700;
     transition: all 0.3s;
     cursor: pointer;
     border-radius: 40px;
 }
 
 .btn-primary {
     background-color: var(--color-white);
     color: var(--color-dark);
     box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
     border-radius: 40px;
 }
 
 .btn-primary:hover {
     transform: scale(1.05);
     background-color: var(--color-border);
 }
 
 .btn-secondary {
     background-color: transparent;
     border: 2px solid rgba(255, 255, 255, 0.3);
     color: var(--color-white);
     backdrop-filter: blur(4px);
 }
 
 .btn-secondary:hover {
     background-color: rgba(255, 255, 255, 0.1);
     border-color: var(--color-white);
 }
 
 .hero-feature-card {
     background-color: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(12px);
     padding: 2rem;
     border-radius: 0.75rem;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     display: none;
     /* Hidden on mobile initially */
 }
 
 .feature-header {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1.5rem;
 }
 
 .feature-icon-bg {
     background-color: rgba(255, 255, 255, 0.1);
     padding: 0.75rem;
     border-radius: 0.5rem;
     margin-right: 1rem;
 }
 
 .feature-list-item {
     display: flex;
     align-items: center;
     color: #cbd5e1;
     margin-bottom: 1rem;
 }
 /* INFINITE SLIDER */
 
 .logo-slider-section {
     padding: 2.5rem 0;
     background: var(--color-white);
     border-bottom: 1px solid var(--color-border);
     overflow: hidden;
 }
 
 .slider-title {
     text-align: center;
     color: var(--color-text-muted);
     font-size: 0.875rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
 }
 
 .slider-infinito {
     position: relative;
 }
 
 @keyframes scroll {
     0% {
         transform: translateX(0);
     }
     100% {
         transform: translateX(calc(-200px * 5));
     }
 }
 
 .slide-track {
     display: flex;
     width: calc(200px * 10);
     animation: scroll 40s linear infinite;
 }
 
 .slide {
     height: 100px;
     width: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px;
 }
 
 .slide img {
     max-width: 100%;
     max-height: 100%;
     opacity: 0.7;
     transition: all 0.3s;
 }
 
 .slide img:hover {
     opacity: 1;
 }
 /* SERVICIOS */
 
 .services-section {
     padding: 5rem 1rem;
     background-color: var(--color-bg-main);
 }
 
 .section-header {
     text-align: center;
     max-width: 48rem;
     margin: 0 auto 4rem auto;
 }
 
 .section-eyebrow {
     color: var(--color-text-muted);
     font-weight: 700;
     letter-spacing: 0.05em;
     text-transform: uppercase;
 }
 
 .section-title {
     font-size: 2.25rem;
     line-height: 2.5rem;
     font-weight: 900;
     color: var(--color-text-primary);
     margin-top: 0.5rem;
 }
 
 .section-desc {
     font-size: 1.25rem;
     color: var(--color-text-muted);
     margin-top: 1rem;
 }
 
 .services-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }
 
 .service-card {
     background: var(--color-white);
     border-radius: 1rem;
     overflow: hidden;
     border: 1px solid var(--color-border);
     box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
 }
 
 .service-card:hover {
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }
 
 .card-image {
     height: 12rem;
     position: relative;
     overflow: hidden;
 }
 
 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s, filter 0.5s;
     filter: grayscale(50%);
 }
 
 .service-card:hover .card-image img {
     transform: scale(1.1);
     filter: grayscale(0%);
 }
 
 .card-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: var(--color-dark);
     color: var(--color-white);
     font-size: 0.75rem;
     font-weight: 700;
     padding: 0.25rem 0.75rem;
     border-radius: 9999px;
 }
 
 .card-badge.light {
     background: var(--color-white);
     color: var(--color-dark);
     border: 1px solid var(--color-dark);
 }
 
 .card-content {
     padding: 2rem;
 }
 
 .card-title-row {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
 }
 
 .card-title {
     font-size: 1.5rem;
     font-weight: 700;
 }
 
 .card-list li {
     display: flex;
     align-items: center;
     color: var(--color-text-muted);
     font-size: 0.875rem;
     margin-bottom: 0.5rem;
 }
 /* GALERÍA */
 
 .gallery-section {
     padding: 5rem 0;
     background-color: #000000;
     color: #d1d5db;
     overflow: hidden;
 }
 
 .gallery-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 3rem;
     padding: 0 1rem;
     max-width: var(--container-max-width);
     margin-left: auto;
     margin-right: auto;
 }
 
 .gallery-nav-btns {
     display: flex;
     gap: 1rem;
 }
 
 .nav-btn {
     background: transparent;
     border: 1px solid var(--color-dark-light);
     color: var(--color-white);
     padding: 0.75rem;
     border-radius: 9999px;
     cursor: pointer;
     transition: all 0.3s;
 }
 
 .nav-btn:hover {
     background: var(--color-white);
     color: var(--color-dark);
     border-color: var(--color-white);
 }
 
 .gallery-slider-container {
     margin-left: 1rem;
 }
 
 .gallery-slider {
     display: flex;
     gap: 1.5rem;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scrollbar-width: none;
     padding-bottom: 2rem;
 }
 
 .gallery-slider::-webkit-scrollbar {
     display: none;
 }
 
 .gallery-slide {
     min-width: 300px;
     scroll-snap-align: start;
     position: relative;
 }
 
 .slide-content {
     aspect-ratio: 4/5;
     border-radius: 0.75rem;
     overflow: hidden;
     background-color: var(--color-dark-light);
     position: relative;
 }
 
 .slide-content img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.7s;
     filter: grayscale(30%);
 }
 
 .gallery-slide:hover img {
     transform: scale(1.1);
     filter: grayscale(0%);
 }
 
 .slide-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, var(--color-dark) 0%, transparent 50%);
     opacity: 0.9;
 }
 
 .slide-info {
     position: absolute;
     bottom: 0;
     left: 0;
     padding: 1.5rem;
 }
 /* CONTACTO */
 
 .contact-section {
     padding: 5rem 1rem;
     background-color: #ffffff;
     background-image: url('/assets/dotted-map-bg.png');
 }
 
 .contact-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 4rem;
 }
 
 .contact-info h2 {
     font-size: 2rem;
     font-weight: 900;
     margin-bottom: 1.5rem;
 }
 
 .info-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1.5rem;
 }
 
 .info-icon {
     background: var(--color-white);
     border: 1px solid var(--color-border);
     padding: 0.75rem;
     border-radius: 0.5rem;
     margin-right: 1rem;
     flex-shrink: 0;
 }
 
 .contact-form-card {
     background: var(--color-white);
     padding: 2rem;
     border-radius: 1rem;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
     border: 1px solid var(--color-border);
 }
 
 .form-group {
     margin-bottom: 1.25rem;
 }
 
 .form-label {
     display: block;
     font-size: 0.875rem;
     font-weight: 500;
     margin-bottom: 0.25rem;
     color: var(--color-text-secondary);
 }
 
 .form-input,
 .form-textarea {
     width: 100%;
     padding: 0.75rem 1rem;
     border-radius: 0.5rem;
     border: 1px solid #d1d5db;
     /* gray-300 */
     transition: border-color 0.3s, box-shadow 0.3s;
 }
 
 .form-input:focus,
 .form-textarea:focus {
     outline: none;
     border-color: var(--color-text-muted);
     box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.2);
     /* slate-500 with opacity */
 }
 
 .btn-submit {
     width: 100%;
     background-color: var(--color-dark);
     color: var(--color-white);
     padding: 1rem;
     border-radius: 4.5rem;
     font-weight: 700;
     border: none;
     cursor: pointer;
     transition: all 0.3s;
 }
 
 .btn-submit:hover {
     background-color: var(--color-dark-light);
     transform: scale(1.02);
 }
 
 .form-grid-2 {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.25rem;
 }
 /* FOOTER */
 
 .footer {
     background-color: #000000;
     color: #ffffff;
     /* slate-400 */
     padding: 3rem 1rem;
     border-top: 1px solid var(--color-dark-light);
 }
 
 .footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-bottom: 2rem;
 }
 
 .footer-logo {
     color: var(--color-white);
     font-size: 1.5rem;
     font-weight: 900;
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
 }
 
 .footer-logo img {
     width: 30vh;
 }
 
 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }
 
 .social-btn {
     width: 2.5rem;
     height: 2.5rem;
     background: var(--color-dark);
     border: 1px solid var(--color-dark-light);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 9999px;
     transition: all 0.3s;
 }
 
 .social-btn:hover {
     background: var(--color-white);
     color: var(--color-dark);
 }
 
 .footer-links h4 {
     color: var(--color-white);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 1rem;
 }
 
 .footer-links li {
     margin-bottom: -0.3rem;
     font-size: 18px;
     font-family: "Smooch Sans", sans-serif;
     font-optical-sizing: auto;
     font-weight: <weight>;
     font-style: normal;
 }
 
 .footer-links a:hover {
     color: var(--color-white);
 }
 
 .footer-bottom {
     border-top: 1px solid var(--color-dark-light);
     padding-top: 2rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }
 /* --- MEDIA QUERIES (RESPONSIVE) --- */
 
 @media (min-width: 640px) {
     /* sm */
     .hero-text h1 {
         font-size: 3rem;
     }
     .hero-buttons {
         flex-direction: row;
     }
     .form-grid-2 {
         grid-template-columns: 1fr 1fr;
     }
     .footer-bottom {
         flex-direction: row;
         justify-content: space-between;
         text-align: left;
     }
 }
 
 @media (min-width: 768px) {
     /* md */
     .desktop-menu {
         display: flex;
     }
     .mobile-menu-btn,
     .mobile-menu {
         display: none;
     }
     .hero-text h1 {
         font-size: 3.75rem;
     }
     .services-grid {
         grid-template-columns: 1fr 1fr;
     }
     .gallery-slide {
         min-width: 400px;
     }
     .slide-content {
         aspect-ratio: 4/3;
     }
     .footer-grid {
         grid-template-columns: 2fr 1fr 1fr;
     }
 }
 
 @media (min-width: 1024px) {
     /* lg */
     .hero-section {
         padding-top: 12rem;
         padding-bottom: 8rem;
     }
     .hero-content {
         flex-direction: row;
         align-items: center;
     }
     .hero-text {
         width: 66.666%;
         padding-right: 3rem;
     }
     .hero-feature-card {
         display: block;
         width: 33.333%;
         margin-top: 0;
     }
     .services-grid {
         grid-template-columns: 1fr 1fr 1fr;
     }
     .service-card-wide {
         grid-column: span 1;
     }
     /* Reset span on LG if needed, or keep it */
     .contact-grid {
         grid-template-columns: 1fr 1fr;
     }
     .gallery-slider-container {
         margin-left: auto;
         max-width: 95%;
     }
 }
 
 .listser {
     position: relative;
     display: flex;
     flex-wrap: wrap;
     align-content: center;
     justify-content: flex-start;
     align-items: center;
     flex-direction: row;
 }
 
 .listser span {
     padding: .5rem;
 }
 
 .mapsjm iframe {
     width: 90%;
     padding: 3px;
     border-radius: 28px;
     border: 1px solid #ffffffb8;
 }