/*
Theme Name: Cleaning Theme
Version: 2.1 - Pixel Perfect Fix
*/

/* =========================================
   1. RESET Y ESTILOS GLOBALES
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #5a607c;
    background-color: #f8f9fc;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, p, ul { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* =========================================
   2. HEADER
   ========================================= */

.site-header {
    background-color: #1e3a8a;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 45px;
    width: auto;
}

.header-nav .header-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.header-nav .header-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.header-nav .header-menu li a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 14px;
}

/* Botones globales */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-login {
    background-color: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-login:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-book {
    background: linear-gradient(135deg, #4cc9f0 0%, #3ab5dc 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(76, 201, 240, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 201, 240, 0.4);
}

/* =========================================
   3. HERO SECTION - CORREGIDO
   ========================================= */

.home-hero {
    position: relative;
    /* Fondo azul más claro como en imagen objetivo */
    background: linear-gradient(135deg, #5fa8e8 0%, #4a9bcf 50%, #3a8fc7 100%);
    padding: 90px 0 50px; /* Más padding inferior */
    overflow: visible; /* Importante: permitir que cards sobresalgan */
}

/* Overlay de textura de casa */
.home-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/services/backgroundservicesareas.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25; /* Más visible que antes */
    z-index: 0;
}

/* Elementos decorativos */
.deco-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50px;
    left: 6%;
    z-index: 1;
}

.deco-stars {
    position: absolute;
    top: 80px;
    right: 10%;
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    z-index: 1;
    letter-spacing: 8px;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

/* TÍTULO CORREGIDO - Como en imagen objetivo */
.home-hero__title {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.home-hero__title {
    color: #ffffff; /* Primera línea blanca */
}

.home-hero__title span {
    color: #1e3a8a; /* Azul oscuro */
}

.home-hero__text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin-bottom: 0;
    max-width: 800px;
}

/* Imagen del hero - MÁS GRANDE */
.home-hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    transform: scale(1.2) translateY(24px);
}

.hero-bucket-img {
    width: 100%;
    max-width: 520px; /* Más grande */
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
    transform: translateY(-15px);
}

/* =========================================
   4. CARDS FLOTANTES - CORREGIDO
   ========================================= */

.home-overlap-cards {
    position: relative;
    margin-top: -83px; /* Más overlap */
    z-index: 10;
    padding-bottom: 90px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center; /* centra el grupo */
    gap: 12px;
}

/* CARDS CORREGIDAS - Fondo gris claro como objetivo */
.info-card {
    background: #f5f7fa; /* Gris claro, no blanco puro */
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06); /* Sombra más suave */
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.6); /* Borde sutil */
    width: 300px;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    background: #ffffff; /* Blanco al hover */
}

.info-card__icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-card__content h3 {
    color: #1e3a8a;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.info-card__content p {
    font-size: 13px;
    color: #6e7592;
    line-height: 1.65;
}



.services-area {
    position: relative;
    padding: 30px 10px;
    text-align: center;
    overflow: hidden;
}

.services-area__title {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e70;
    margin-bottom: 60px;
    line-height: 1.2;
}

.services-area__title span {
    display: block;
    color: #38a3d1;
}

.services-area__map {
    display: flex;
    justify-content: center;
}

.services-area__map img {
    display: block;
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
}
/* BURBUJAS */
.bubble {
    position: absolute;
    pointer-events: none;
}

.bubble-top {
    top: -90px;
    right: 50px;
    width: 240px;
}

.bubble-left {
    bottom: 40px;
    left: 0;
    width: 180px;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.bubble {
    animation: float 6s ease-in-out infinite;
}


.luxury-section {
    background: #f4f6f9;
    padding: 100px 20px;
    position: relative;
}

/* Texto superior */
.luxury-top-text {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    color: #5f6c7b;
    line-height: 1.8;
}

/* GRID principal */
.luxury-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

/* Listas */
.luxury-list {
    list-style: none;
    padding: 0;
}

.luxury-list li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #2c3e70;
    position: relative;
    padding-left: 28px;
    line-height: 1.9;
}

/* Check azul */

.luxury-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: #2f4a8a;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen central */
.luxury-center-image img {
    max-width: 350px;
    transform: scale(1.5);
    position: relative;
    top: 20px;
    }

/* Card Azul */
.luxury-card {
    background: #2f4a8a;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    align-items: left;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: visible;
    top: 55px;
}

/* Contenido card */
.luxury-card-content {
    max-width: 600px;
    color: white;
}

.luxury-card-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.luxury-card-content h2 span {
    color: #3db4e7;
}

.luxury-card-content p {
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Botón */
.btn-book {
    display: inline-block;
    background: #3db4e7;
    padding: 14px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Imagen sobresaliendo */
.luxury-card-image img {
    max-width: 580px;
    position: absolute;
    right: -44px;
    bottom: -40px;
}