/*
* Paleta de colores Inmowik
* Negro: #000
* Blanco: #fff
* Gris para textos: #333
* Gris para fondos suaves: #f8f9fa
*/

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

/* Aumento general del tamaño de párrafos */
p, li {
    font-size: 1.1rem;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.highlight-black {
    background-color: #111214;
    color: #fff;
    padding: 2px 8px;
    display: inline-block;
}

/* Header */
/* Forzamos el fondo negro y eliminamos sombra */
.navbar.bg-black {
    background-color: #111214 !important;
    box-shadow: none;
}

.navbar-brand img {
    max-height: 70px;
}

/* Texto de enlaces en blanco */
.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 5px;
    border-radius: 5px;
}

/* Hover: fondo blanco, texto negro */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    background-color: #fff;
    color: #000 !important;
}

/* Botón principal del nav (hover inverso) */
.navbar-dark .navbar-nav .btn.btn-light {
    color: #000 !important;
    background-color: #fff;
}
.navbar-dark .navbar-nav .btn.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}


/* Video Hero Section */
#hero-video-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}

#hero-video-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#hero-video-section .container {
    position: relative;
    z-index: 2;
}

#hero-video-section h1 {
    font-size: 3.8rem;
    font-weight: 900;
}

/* Steps Section (Ahora Services) */
.step-item {
    text-align: center;
    padding: 20px;
}

.step-item .step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Guarantee Section (Ahora Why Us) */
.guarantee-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.guarantee-item .icon {
    font-size: 2rem;
    color: #000;
    margin-right: 20px;
    min-width: 40px;
}

/* Contact Form */
#contact-form-section {
    background-color: #f8f9fa;
}

.form-control:focus, .form-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

/* Footer */
footer.bg-black {
    background-color: #000 !important;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
.whatsapp-float i {
    margin-top: 15px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 1000;
    display: none; /* Hidden by default */
}

/* Honeypot */
.hp_field {
    display: none;
}

/* Form Feedback */
#form-feedback {
    margin-top: 15px;
    font-weight: bold;
}