/* Main Styles */

/* Fuentes GigaSans */
@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansSemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'GigaSans';
    src: url('../fuentes/Locomotype  GigaSansBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Variables de fuentes */
:root {
    --font-giga: 'GigaSans', sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;
}

/* Aplicar fuente base con tamaño reducido */
body {
    font-family: var(--font-giga);
    font-weight: var(--font-regular);
    font-size: 14px;
    /* Reducido de 16px por defecto */
}

/* Reducir tamaños de texto base */
.text-xs {
    font-size: 0.75rem !important;
}

/* 12px - mantenido */
.text-sm {
    font-size: 0.8rem !important;
}

/* 12.8px - reducido de 14px */
.text-base {
    font-size: 0.9rem !important;
}

/* 14.4px - reducido de 16px */
.text-lg {
    font-size: 1rem !important;
}

/* 16px - reducido de 18px */
.text-xl {
    font-size: 1.1rem !important;
}

/* 17.6px - reducido de 20px */
.text-2xl {
    font-size: 1.3rem !important;
}

/* 20.8px - reducido de 24px */
.text-3xl {
    font-size: 1.5rem !important;
}

/* 24px - reducido de 30px */
.text-4xl {
    font-size: 1.8rem !important;
}

/* 28.8px - reducido de 36px */
.text-5xl {
    font-size: 2.2rem !important;
}

/* 35.2px - reducido de 48px */
.text-6xl {
    font-size: 2.6rem !important;
}

/* 41.6px - reducido de 60px */
.text-7xl {
    font-size: 3rem !important;
}

/* 48px - reducido de 72px */

/* Ajustes específicos para títulos */
.title-hero {
    font-family: var(--font-giga);
    font-weight: var(--font-black);
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3rem);
    /* Responsive entre 32px y 48px */
}

.title-section {
    font-family: var(--font-giga);
    font-weight: var(--font-bold);
    font-size: clamp(1.5rem, 4vw, 2rem);
    /* Responsive entre 24px y 32px */
}

.subtitle-light {
    font-family: var(--font-giga);
    font-weight: var(--font-light);
    font-style: italic;
    font-size: clamp(1rem, 3vw, 1.3rem);
    /* Responsive entre 16px y 20.8px */
}

.text-price {
    font-family: var(--font-giga);
    font-weight: var(--font-black);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    /* Responsive entre 19.2px y 24px */
}

/* Clases de utilidad para fuentes GigaSans */
.text-giga-light {
    font-family: var(--font-giga);
    font-weight: var(--font-light) !important;
}

.text-giga-regular {
    font-family: var(--font-giga);
    font-weight: var(--font-regular) !important;
}

.text-giga-medium {
    font-family: var(--font-giga);
    font-weight: var(--font-medium) !important;
}

.text-giga-semibold {
    font-family: var(--font-giga);
    font-weight: var(--font-semibold) !important;
}

.text-giga-bold {
    font-family: var(--font-giga);
    font-weight: var(--font-bold) !important;
}

.text-giga-black {
    font-family: var(--font-giga);
    font-weight: var(--font-black) !important;
}

.tab-btn {
    outline: none;
}

.active-tab {
    border-color: #1e3a5f !important;
    border-radius: 20px 20px 0 0;
    background-color: white;
    border-bottom-color: white !important;
    margin-bottom: -1px;
    z-index: 10;
}

.active-tab h3 {
    color: #1e3a5f !important;
}

.active-tab p {
    color: #1e3a5f !important;
    opacity: 0.7;
}

/* Custom Contact Form Inputs */
.custom-input {
    background-color: rgba(107, 143, 183, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: all 0.3s ease;
}

/* Site Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e3a5f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
    background-image: url('../img/1.INDEX/Mesa de trabajo 35.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.loader-logo-inner {
    display: none;
    /* Ocultar el círculo interior */
}

.loader-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInOut 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Styles */
.footer-gradient {
    background: linear-gradient(90deg, #0d2847 0%, #004d9f 50%, #0d2847 100%);
    /* Opcional: un degradado radial como el de la imagen */
    background: radial-gradient(circle at right, #004d9f 0%, #0c2543 70%);
}

.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: white;
    border-radius: 8px;
    color: #0c2543;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon-box:hover {
    background-color: #004d9f;
    color: white;
    transform: translateY(-3px);
}

/* Contact Section Styles */
.contact-gradient {
    background: radial-gradient(circle at center, #004d9f 0%, #003876 100%);
    background: radial-gradient(circle at 70% 50%, #004d9f 0%, #003876 80%);
}

.contact-input {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-input:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

/* Paquetes Section Styles */
.active-package-tab {
    border: 2px solid #004d9f !important;
    border-bottom: 2px solid white !important;
    border-radius: 20px 20px 0 0;
    margin-bottom: -2px;
    z-index: 10;
    background-color: white;
}

.active-package-tab h3 {
    color: #004d9f !important;
    font-weight: 700 !important;
}

.active-package-tab p {
    color: #004d9f !important;
    opacity: 0.8;
}

.price-pill {
    background-color: #004a99;
    border-radius: 30px;
    padding: 1.5rem 3rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.15);
}

.list-header-marker {
    width: 8px;
    height: 8px;
    background-color: #004d9f;
    display: inline-block;
    flex-shrink: 0;
}

.list-item-bullet {
    width: 10px;
    height: 10px;
    background-color: #004d9f;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.vertical-divider {
    width: 2px;
    background-color: #004d9f;
    height: 100%;
}

/* Scrollbar hiding utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}