﻿.hero-box {
    width: 100%;
    min-height: 60vh;
    padding: 4rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 🌟 Fondo moderno (gradient suave) */
    background: linear-gradient(135deg, #439acf 0%, #6dd5ed 50%, #e0f7fa 100%);
    /* ✨ Sin borde duro */
    border: none;
    /* 💎 esquinas suaves */
    border-radius: 0 0 40px 40px;
    /* 🌫️ profundidad */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

    .hero-box::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(0,0,0,0.08);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
        filter: blur(50px);
    }
@media (max-width: 768px) {
    .hero-box {
        padding: 3rem 1.5rem;
        border-radius: 0 0 25px 25px;
        text-align: center;
    }
}
.hero-text1 {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto 1.2rem;
    line-height: 1.7;
    font-weight: 400;
}




.hero-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* LOGO */
.hero-logo {
    width: 200px; /* más grande */
    height: auto;
    flex-shrink: 0;
}

/* TEXTO */
.hero-text-group {
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin: 0;
    line-height: 1.7;
}




@media (max-width: 768px) {
    .hero-header {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        width: 120px;
        margin-bottom: 1rem;
    }

    .hero-text-group {
        max-width: 100%;
    }
}


.btn-contacto {
    background-color: #ffffff;
    color: #059669; 
    font-weight: 700;
    font-size: 1.125rem; 
    padding: 1rem 2.5rem;
    border-radius: 1rem; 
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease-in-out;
}

    .btn-contacto:hover {
        background-color: #ecfdf5; /* emerald-50 */
        color: #047857;
        transform: translateY(-2px);
    }



.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #000000;
    max-width: 650px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(to right, #059669, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.service-card {
    position: relative;
    height: 320px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

    /* Imágenes */
    .service-card.lavado {
        background-image: url('../img/Lavado.png');
    }

    .service-card.planchado {
        background-image: url('../img/Planchado.png');
    }

    .service-card.domicilio {
        background-image: url('../img/Domicilio.png');
    }

    .service-card.ServiciosE {
        background-image: url('../img/ServiciosE.png');
    }

    /* Capa oscura */
    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        transition: background 0.3s ease;
    }

/* Contenido */
.service-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    z-index: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Texto oculto */
.service-text {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Hover */
.service-card:hover .service-text {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover::before {
    background: rgba(0, 0, 0, 0.55);
}



.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

    .service-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        color: #f9fafb;
    }

        /* Viñeta personalizada */
        .service-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #10b981; /* verde */
            font-weight: bold;
        }

.service-card:hover .service-list {
    opacity: 1;
    transform: translateY(0);
}




.footer {
  
    background: rgba(67, 154, 207, 0.85);
    color: white;
    padding: 3rem 0;
}




.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        display: flex;
        gap: 0.6rem;
        margin-bottom: 0.7rem;
    }

    .footer-list a {
        color: white;
        text-decoration: none;
    }


/* Contenedor logo + texto */
.footer-brand-box {
    display: flex;
    align-items: flex-start; /* alinea arriba */
    gap: 1rem;
}

/* Logo */
.footer-logo {
    width: 120px; /* ajusta tamaño aquí */
    height: auto;
    flex-shrink: 0; /* evita que se encoja */
}

/* Texto al lado del logo */
.footer-brand-text {
    text-align: left;
}

/* Responsive: en móvil se apilan */
@media (max-width: 768px) {
    .footer-brand-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-text {
        text-align: center;
    }
}


.footer-contact-title {
    padding-left: 2rem; /* mueve el título a la derecha */
}


/* Parte inferior */
.footer-bottom {
    border-top: 1px solid rgba(167, 243, 208, 0.3);
    padding-top: 1.5rem;
    color: #a7f3d0;
}

    .footer-bottom small {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.8rem;
    }





@media (max-width: 768px) {

    footer {
        text-align: center;
    }

    .footer-contact,
    .footer-hours {
        align-items: center;
    }

        .footer-contact .contact-item {
            justify-content: center;
            text-align: center;
        }
}

html {
    scroll-behavior: smooth;
}


.contact-title {
    font-size: 3rem; 
    font-weight: 800; 
    color:black; /* blanco */
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Responsive */
@media (min-width: 768px) {
    .contact-title {
        font-size: 3.5rem;
    }
}


/* Encabezado de sección */
.section-header {
    max-width: 800px;
    margin: 0 auto;
}

/* Título */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937; /* gris oscuro elegante */
    margin-bottom: 1rem;
}

/* Subtítulo */
.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}


/* Tarjetas */
.contact-card,
.contact-info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Títulos */
.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

/* Lista contacto */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        display: flex;
        gap: 0.8rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        color: #374151;
    }

    .contact-list a {
        color: #439acf;
        text-decoration: none;
        font-weight: 500;
    }

/* Botón */
.btn-contacto {
    background-color: #439acf;
    color: #fff;
    font-weight: 600;
    border-radius: 0.8rem;
}

    .btn-contacto:hover {
        background-color: #2f7fb4;
    }

/* Mapa */
.map-box {
    height: 260px;
    border-radius: 1.5rem;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(67, 154, 207, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}




.map-box {
    height: 260px; /* tamaño ya establecido */
    border-radius: 1.5rem;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* llena el div sin deformarse */
    display: block;



}


/* =========================
   🌄 Estilos del login y personalizacion de imagenes en las diferentes vistas
============================================================================================================= */


.login-icon i {
    font-size: 80px; /* ajusta aquí el tamaño */
}

.fondo-base .contenido-principal {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

    /* overlay */
    .fondo-base .contenido-principal::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

/* contenido encima */
.contenido-principal > .container {
    position: relative;
    z-index: 1;
}

/* =========================
   🎯 IMÁGENES POR VISTA
========================= */
.fondo-login .contenido-principal {
    background-image: url('/img/fondoLogin.jpg');
}

.fondo-crear .contenido-principal {
    background-image: url('/img/eco.png');
}


body {
    background-color: #f4f6f9;
}

/* Tarjeta */
.login-card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}

.Login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: black; /* blanco */
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Inputs */
.custom-input {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #dcdcdc;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.2);
}

/* Botón */
.custom-btn {
    background-color: rgba(67, 154, 207, 0.85);
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.custom-btn:hover {
    background-color: #357abd;
}


/* Estilos formulario crear pedido */
/* =============================================================================================================================
   🎨 CONTENEDOR PRINCIPAL
========================= */
.form-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* =========================
   🏷️ TÍTULOS
========================= */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    border-left: 5px solid #10b981;
    padding-left: 10px;
}


.Title-Principal {
    font-size: 2rem;
    font-weight: 800;
    color: black; /* blanco */
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.03em;
}

/* =========================
   ✏️ INPUTS
========================= */
.custom-input {
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

    .custom-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
    }

/* =========================
   📊 TABLA
========================= */
.custom-table {
    border-radius: 10px;
    overflow: hidden;
}

    .custom-table thead {
        background-color: #0d6efd;
        color: white;
    }

    .custom-table tbody tr:hover {
        background-color: #f5f9ff;
    }

/* =========================
   💰 TOTAL
========================= */
.total-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

#total {
    color: #198754;
    font-weight: bold;
    font-size: 1.5rem;
}

/* =========================
   🚀 BOTÓN PRINCIPAL
========================= */
.custom-btn {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}

    .custom-btn:hover {
        background: #10b981;
    }

/* =========================
   ➕ BOTÓN AGREGAR PRENDA
========================= */
#btnAgregarPrenda {
    background: linear-gradient(to right, #10b981, #059669);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease-in-out;
}

/* =========================
   🔽 SELECT
========================= */
#selectPrenda {
    border-radius: 10px;
}

/* =========================
   📱 RESPONSIVE
========================= */
@media (max-width: 768px) {
    .form-card {
        padding: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }
}
.img-ajustada {
    width: 100%;
    height: 200px;
    object-fit: contain; 
    background-color: #f8f9fa; 
}



/* =========================
   📱 Estilos vista de conafirmacion pedido
========================================================================================================== */


body {
    background: linear-gradient(135deg, #f0fdf4, #e0f7fa);
}

/* Tarjeta */
.confirm-card {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    transition: transform 0.3s ease;
}

    .confirm-card:hover {
        transform: translateY(-5px);
    }

/* Icono */
.icon-success i {
    font-size: 70px;
    color: #28a745;
    animation: pop 0.4s ease;
}

/* Animación */
@keyframes pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive ajustes */
@media (max-width: 576px) {
    .icon-success i {
        font-size: 55px;
    }

    .confirm-card {
        padding: 2rem 1.5rem;
    }
}

/* Evitar scroll raro por canvas */
canvas {
    max-width: 100% !important;
}


/* =========================
   📱 Estilos vista precios de las prendas
========================================================================================================== */
/* ===== CARD ===== */

/* ===== ICONOS (AZUL IDENTIDAD) ===== */
.precio-icon i {
    font-size: 42px;
    color: #439acf; /* azul principal */
    transition: all 0.3s ease;
}

.precio-card:hover .precio-icon i {
    transform: scale(1.15);
    color: #2f86c9;
}

/* ===== CARD ===== */
.precio-card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
}

    .precio-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(67, 154, 207, 0.20);
    }

/* ===== PRECIO ===== */
.precio {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2d3d;
}

/* ===== BOTÓN (VERDE PRINCIPAL) ===== */
.btn-primary,
.btn-success {
    background-color: #28a745; /* verde Bootstrap */
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .btn-primary:hover,
    .btn-success:hover {
        background-color: #218838;
        transform: scale(1.03);
    }

/* ===== TITULOS CON IDENTIDAD AZUL ===== */
h1 span {
    color: #439acf;
}

/* ===== HEADER ===== */
h1 {
    color: #1f2d3d;
}

.precio-card {
    border: 1px solid rgba(67, 154, 207, 0.35); /* azul visible */
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    /* 💎 sombra azul suave */
    box-shadow: 0 6px 18px rgba(67, 154, 207, 0.18);
}

    /* hover más pro */
    .precio-card:hover {
        transform: translateY(-6px);
        border: 1px solid rgba(67, 154, 207, 0.7);
        /* 🔵 glow azul más fuerte */
        box-shadow: 0 10px 25px rgba(67, 154, 207, 0.25), 0 0 12px rgba(67, 154, 207, 0.15);
    }



/* =========================
   📱 Estilos vista admin
========================================================================================================== */



.page-title {
    font-weight: 700;
    color: #1f2d3d;
}

.table-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.table thead {
    background: linear-gradient(90deg, #1f2d3d, #2c3e50);
    color: white;
}

.badge-status {
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
}

.estado-pendiente {
    background: #ffc107;
    color: #1f2d3d;
}

.estado-asignado {
    background: #439acf;
    color: white;
}

.estado-entregado {
    background: #198754;
    color: white;
}
.estado-cancelado {
    background: #dc3545;
    color: white;
}

.estado-otros {
    background: #6c757d;
    color: white;
}

.btn-azul {
    background: #439acf;
    border: none;
}

    .btn-azul:hover {
        background: #2f86c9;
    }

.table td, .table th {
    vertical-align: middle;
}

.form-select-sm {
    border-radius: 10px;
}


/* =========================
   📱 Estilos vista admin
========================================================================================================== */
.card {
    border-radius: 12px;
}

.form-label {
    font-size: 0.9rem;
    color: #555;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
}

    .btn-primary:hover {
        opacity: 0.9;
    }

table {
    border-radius: 10px;
    overflow: hidden;
}


/* =========================
   📱 Estilos vista alertas- notificaciones
========================================================================================================== */
/* Contenedor base */
.toast-custom {
    background: #fff;
    border-left: 5px solid #ffc107; /* amarillo warning */
    border-radius: 12px;
    transition: all 0.3s ease;
}

    /* Hover elegante */
    .toast-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

/* Icono */
.toast-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Texto */
.toast-body {
    font-size: 0.95rem;
    color: #333;
}

/* Botón check */
.toast-custom .btn-success {
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.8rem;
}

/* Botón cerrar */
.toast-custom .btn-close {
    opacity: 0.6;
}

    .toast-custom .btn-close:hover {
        opacity: 1;
    }

/* Animación entrada */
.toast-custom {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Icono campana , contador notificaciones */
.icon-bell {
    font-size: 24px;
}

/* =========================
   📱 Estilos vista Domiciliario
========================================================================================================== */
table tbody tr:hover {
    background-color: #f5f5f5;
    transition: 0.2s;
}

.badge {
    font-size: 0.85rem;
    padding: 6px 10px;
}
.estado-Aceptado {
    background: #0d6efd;
    ;
    color: #1f2d3d;
}

.estado-En_camino {
    background: #fd7e14;
    color: white;
}



