/**
 * =============================================================================
 * PEÑA Y OLAVE BANQUETERÍA - Main Stylesheet
 * =============================================================================
 * 
 * Estilos principales de la aplicación.
 * Arquitectura: Mobile First
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-8);
    padding-right: var(--spacing-8);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--spacing-16);
        padding-right: var(--spacing-16);
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 120px;
        padding-right: 120px;
    }
}

.section {
    padding-top: var(--spacing-12);
    padding-bottom: var(--spacing-12);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--spacing-16);
        padding-bottom: var(--spacing-16);
    }
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--spacing-20);
        padding-bottom: var(--spacing-20);
    }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-gray-900);
}

h1 {
    font-size: var(--font-size-3xl);
}

h2,
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    /* Escala responsiva armónica */
    line-height: 1.2;
    margin-bottom: 25px;
    /* Margen estandarizado */
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    color: var(--color-secondary-500);
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: var(--font-size-5xl);
    }
}

.text-accent {
    font-family: var(--font-family-accent);
    font-weight: var(--font-weight-normal);
}

.text-gold {
    color: var(--color-primary-500);
}

.text-center {
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--color-secondary-500);
    margin-bottom: 30px;
}

.text-center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

p {
    font-size: 1.1rem;
    /* Mejor lectura solicitada */
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: inherit;
    /* Hereda para adaptarse a fondos oscuros/claros */
}

/* ==========================================================================
   HEADER COMPACTO & NAVBAR
   ========================================================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-standard);
    height: auto;
}


.header__top {
    padding: 10px 0;
    transition: var(--transition-standard);
}


.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    font-size: 18px;
    display: inline-block;
    background: linear-gradient(135deg, #a8a8a8 0%, #666666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.45;
    /* Menor intensidad solicitada */
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.social-link:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.header__main {
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centramos el menú ya que no hay logo */
}

.header__logo-placeholder {
    display: none;
    /* No lo necesitamos si centramos el nav */
}

.nav__list {
    display: none;
}

@media (min-width: 1024px) {
    .nav__list {
        display: flex;
        gap: 30px;
    }
}

.nav__link {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #b0b0b0 0%, #707070 50%, #909090 100%);
    /* Gris más sobrio */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}


.nav__link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-2);
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-gray-800);
    transition: transform var(--transition-fast);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-700) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 78, 0.4);
}

.btn--secondary {
    background-color: var(--color-secondary-500);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(77, 140, 77, 0.3);
}

.btn--secondary:hover {
    background-color: #5ba15b;
    /* Tono verde más claro */
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 140, 77, 0.4);
}

.btn--large {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-base);
}

/* ==========================================================================
   HERO CON VIDEO
   ========================================================================== */

.hero--animated {
    width: 100%;
    height: 100vh;
    /* Ocupa el 100% de la altura del navegador */
    height: 100svh;
    /* Soporte para viewports dinámicos en móviles */
    background: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero__ambient-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    filter: blur(120px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ambientFloating 14s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

@keyframes ambientFloating {
    0% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 1;
        /* Inicia claro */
    }

    25% {
        transform: translate(-47%, -44%) scale(1.08);
        opacity: 0.75;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.55;
        /* Punto más oscuro */
    }

    75% {
        transform: translate(-46%, -53%) scale(1.08);
        opacity: 0.75;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 1;
        /* Vuelve a claro */
    }
}

.hero__logo--black {
    position: relative;
    max-width: 450px;
    width: 85%;
    z-index: 5;
    filter: brightness(0);
    /* Forzamos color negro absoluto */
    animation: heroLogoFade 2s ease-out forwards;
}

@media (max-width: 768px) {
    .hero__logo--black {
        max-width: 280px;
        /* Tamaño reducido para móvil */
        width: 75%;
    }
}

@keyframes heroLogoFade {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.mouse-icon {
    width: 22px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 2px;
    height: 6px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

.scroll-text {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SECCIÓN BIENVENIDA (DOS COLUMNAS)
   ========================================================================== */

.welcome-section {
    padding: 60px 0 80px 0;
    background: var(--color-white);
    color: var(--color-gray-600);
}

.welcome-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.welcome-column {
    flex: 1 1 450px;
}

.welcome-video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

.welcome-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 2;
}

.video-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    color: var(--color-secondary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button i {
    margin-left: 5px;
    /* Ajuste óptico para centrado de flecha */
}

.video-overlay:hover .play-button {
    transform: scale(1.15);
}

.welcome-label {
    display: block;
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary-500);
    margin-bottom: 15px;
}

.welcome-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    /* Igualado a .section-title */
    color: var(--color-primary-500);
    line-height: 1.2;
}

.welcome-divider {
    width: 60px;
    height: 3px;
    background: var(--color-secondary-500);
    margin-bottom: 30px;
}

.welcome-text {
    font-size: 1.1rem;
    /* Estandarizado al párrafo global */
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 40px;
}

/* ==========================================================================
   SECCIÓN SERVICIOS AESTHETIC
   ========================================================================== */

.premium-services {
    padding: 100px 0;
    background-color: rgba(77, 140, 77, 0.05);
    /* Color secundario al 5% para sutil diferenciación */
    color: var(--color-gray-600);
}

.services-grid-premium {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 1024px) {
    .services-grid-premium {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.service-card-horizontal {
    display: flex;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 180px;
    /* Altura fija para mantener rectángulos perfectos */
}

@media (max-width: 480px) {
    .service-card-horizontal {
        height: 160px;
        /* Más compacto en móviles pequeños */
    }
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 0 0 35%;
    /* Imagen ocupa el 35% del ancho */
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-image {
        flex: 0 0 40%;
    }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-horizontal:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-info {
        padding: 15px 20px;
    }
}

.service-info h4 {
    margin-bottom: 10px;
}

.service-info p {
    font-size: 1.1rem;
    /* Igualado al global */
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CARRUSEL HORIZONTAL
   ========================================================================== */

.carousel-section {
    padding: 60px 0;
    overflow: hidden;
    background: var(--color-white);
    position: relative;
}

.carousel-track.marquee {
    display: flex;
    width: max-content;
    /* Importante para la animación */
    gap: 20px;
    animation: marqueeContinuous 40s linear infinite;
    padding: 0;
}

.carousel-track.marquee:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 300px;
    /* Ancho fijo para consistencia */
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 400px;
        height: 300px;
    }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

@keyframes marqueeContinuous {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
        /* Se mueve la mitad (el primer grupo) */
    }
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 400px;
    }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* ==========================================================================
   CENTRO DE EVENTOS (8 CARACTERÍSTICAS)
   ========================================================================== */

.venue-features {
    padding: 100px 0;
    background: var(--color-primary-500);
    color: var(--color-white);
}

.venue-features .section-title {
    color: var(--color-white);
}

.venue-features .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: transparent;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: var(--transition-standard);
}

@media (min-width: 640px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 22px;
    color: var(--color-secondary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--color-secondary-500);
    border-radius: 8px;
    /* Look premium sutilmente redondeado */
    opacity: 0.9;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .feature-card i {
        font-size: 26px;
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
}

.feature-card__content {
    flex: 1;
}

.feature-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

@media (min-width: 640px) {
    .feature-card h4 {
        margin-bottom: 15px;
    }
}

.feature-card p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.feature-card:hover i {
    background: var(--color-secondary-500);
    color: var(--color-white);
    opacity: 1;
}

/* ==========================================================================
   FOOTER CON GRISTILO
   ========================================================================== */

.footer {
    background: var(--color-primary-500);
    color: white;
    padding: 80px 0 30px;
}

.footer__main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: block;
    margin-bottom: var(--spacing-4);
}

.footer__logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer__description {
    font-size: 1.1rem;
    /* Estandarizado al párrafo global */
    line-height: 1.7;
    color: var(--color-gray-400);
}

.footer__title {
    font-family: var(--font-family-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--spacing-4);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.footer__link {
    font-size: 1.1rem;
    /* Estandarizado al párrafo global */
    color: var(--color-gray-400);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-fast);
}

.footer__link i {
    font-size: 0.8rem;
    color: var(--color-secondary-500);
    transition: transform 0.3s ease;
}

.footer__link:hover {
    color: var(--color-white);
}

.footer__link:hover i {
    transform: translateX(3px);
    color: var(--color-white);
}

.footer__list--contact li {
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /* Espaciado solicitado entre icono y texto */
    color: var(--color-gray-400);
}

.footer__list--contact i {
    color: var(--color-secondary-500);
    margin-top: 5px;
}

.gristilo-logo {
    max-width: 80px;
    /* Tamaño reducido solicitado */
    height: auto;
    transition: transform 0.3s ease;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.gristilo-branding {
    display: flex;
    flex-direction: row;
    /* Una sola fila solicitado */
    align-items: center;
    gap: 12px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gristilo-branding:hover {
    opacity: 1;
}

.gristilo-branding:hover .gristilo-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gristilo-branding {
        justify-content: center;
    }
}

.gristilo-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SECCIÓN COTIZA TU EVENTO
   ========================================================================== */

.quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-secondary-500) 0%, var(--color-secondary-700) 100%);
    color: var(--color-white);
}

.quote-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    /* Estandarizado al párrafo global p */
    line-height: 1.7;
    margin-bottom: 60px;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 18px;
    /* Cambiado para control de altura con height */
    height: 60px;
    /* Altura unificada para alineación perfecta */
    color: var(--color-white);
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
}

.form-group textarea {
    padding: 18px;
    height: 180px;
    /* Altura fija para textarea */
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    /* Blanco al 50% solicitado */
}

.form-group textarea {
    resize: none;
    height: 100%;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary-500);
    background-color: rgba(255, 255, 255, 0.07);
}

/* Estilos específicos para Select y Fecha */
.form-group select,
.form-group input[type="date"] {
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 45px;
    cursor: pointer;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

.form-group input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

/* Ocultar iconos nativos de calendario en navegadores pero permitir clic en todo el campo */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    background: transparent;
}

/* Layout Grid */
.col-6 {
    grid-column: span 6;
}

.col-3 {
    grid-column: span 3;
}

.col-8 {
    grid-column: span 8;
}

.col-4 {
    grid-column: span 4;
}

@media (max-width: 991px) {
    .col-3 {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {

    .col-6,
    .col-3,
    .col-8,
    .col-4 {
        grid-column: span 12;
    }
}

.btn-quote-submit {
    width: 100%;
    height: 180px;
    /* Igualada a la altura del textarea */
    background: var(--color-secondary-700);
    border: 2px solid var(--color-secondary-700);
    color: var(--color-white);
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-top: auto;
    /* Empuja hacia abajo para alinear con el inicio del textarea si es necesario */
}

.btn-quote-submit:hover {
    background: var(--color-secondary-600);
    border-color: var(--color-secondary-600);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Success Message */
.quote-success-message {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    animation: fadeIn 0.8s ease-out;
}

.success-icon {
    font-size: 80px;
    color: var(--color-white);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.success-title {
    font-family: var(--font-family-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.success-subtitle {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-white {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-secondary-500);
}

.footer__copyright {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}