
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    height: 100%;
}

body {
    background-color: #ffffff;
    color: #333;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 19px;
    line-height: 1.7;

    text-align: center;
    overflow-x: hidden;
    position: relative;

}
header {
    background: #ffffff;
    width: 100%;
    padding: 30px 20px 20px 20px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-contenedor {
    position: relative;
    display: inline-block;
    max-width: 650px;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
}

.logo-contenedor a {
    display: block;
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.marco-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.menu-navegacion {
    margin-top: 20px;

    padding-top: 20px;
    width: 100%;
}

.menu-navegacion ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.menu-navegacion a {
    text-decoration: none;
    color: #1b5e20;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    background-color: #e8f5e9;
    transition: all 0.2s ease;
    display: inline-block;
}

.menu-navegacion a:hover,
.menu-navegacion a.activo {
    background-color: #4cae4c;
    color: white;
    box-shadow: 0 3px 8px rgba(76, 174, 76, 0.3);
}

.menu-navegacion a.btn-proximamente {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    border: 1px solid #e0e0e0;
}
.carrusel-contenedor {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 30px auto;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.carrusel-track {
    display: flex;
    width: calc(300px * 8);
    animation: carruselMovimiento 20s linear infinite;
}

.carrusel-slide {
    width: 300px;
    height: 220px;
    flex-shrink: 0;
    padding: 8px;
}

.carrusel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@keyframes carruselMovimiento {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 4)); }
}

.tarjeta-web {
    background: #ffffff;
    width: 100%;
    flex: 1 0 auto; /* Empuja el footer y las ondas hacia el fondo */
    padding: 40px 5% 20px 5%;
    box-shadow: none;
    position: relative;
    z-index: 5;
}

section {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

h2 {
    font-size: 30px;
    color: #1b5e20;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

/* BLOQUES DESTACADOS Y RESEÑAS */
.bloque-hermana {
    background-color: #e8f5e9;
    border-left: 6px solid #1b5e20;
    padding: 20px 25px;
    margin: 25px auto;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
}

.resena-google {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-left: 5px solid #d9534f;
    padding: 20px;
    font-style: italic;
    font-size: 18px;
    margin: 25px auto;
    border-radius: 6px;
    text-align: center;
}

.resena-google small {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #555;
    font-size: 16px;
}

.destacados-ventas ul {
    list-style-position: inside;
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.8;
    text-align: center;
}

/* BOTONES Y ACCIONES */
.acciones-contacto {
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.btn-whatsapp, .btn-gmail, .btn-mapa {
    display: inline-block;
    flex: 1;
    max-width: 400px;
    min-width: 220px;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.2s ease;
}

.btn-whatsapp { background-color: #25d366; }
.btn-whatsapp:hover { background-color: #1ebd56; }

.btn-mapa { background-color: #4285f4; }
.btn-mapa:hover { background-color: #3367d6; }

.btn-gmail { background-color: #ea4335; }
.btn-gmail:hover { background-color: #d33828; }
.contenedor-columnas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
    max-width: 1200px;
    margin: 20px auto 0 auto;
    width: 100%;
}

.tarjeta-columna {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.tarjeta-columna h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.tarjeta-columna .acciones-contacto {
    margin-top: auto;
    padding-top: 15px;
    margin-bottom: 0;
}

.horarios-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horarios-grid .dia span {
    display: block;
    font-size: 15px;
    color: #666;
}

.horarios-grid .cerrado p {
    color: #d9534f;
    font-weight: bold;
}

.ondas-divisor {
    width: 100%;
    margin: auto 0 0 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    display: block;
    overflow: hidden;
}

.ondas-divisor img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 -2px 0; 
    padding: 0;
}

footer {
    background-color: #1b5e20;
    color: white;
    width: 100%;
    text-align: center;
    padding: 25px 20px;
    font-size: 17px;
    position: relative;
    z-index: 10;
    margin-top: 0;
    flex-shrink: 0;
}

footer p {
    color: white;
    margin: 0;
    font-size: 17px;
}

@media (max-width: 900px) {
    .contenedor-columnas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .tarjeta-web { padding: 25px 15px 0 15px; }
    .menu-navegacion a { font-size: 15px; padding: 10px 16px; }
    h2 { font-size: 24px; }
    p { font-size: 17px; }
    .btn-whatsapp, .btn-gmail, .btn-mapa { width: 100%; max-width: 100%; }
}

/* ==========================================
   ESTILOS ESPECÍFICOS DE FORMULARIO DE CONSULTA
   ========================================== */

.formulario-estetico {
    max-width: 800px;
    margin: 30px auto 0 auto;
    text-align: left;
}

.form-fila {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-columna {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-columna label, 
.form-grupo label {
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-columna input,
.form-grupo input,
.form-grupo textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-columna input:focus,
.form-grupo input:focus,
.form-grupo textarea:focus {
    outline: none;
    border-color: #1b5e20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
    background-color: #ffffff;
}

.form-grupo textarea {
    resize: vertical;
    min-height: 110px;
}

/* CARGA DE ARCHIVOS Y CÁMARA (DROPZONE) */
.campo-foto-diseno {
    margin-bottom: 25px;
    position: relative;
}

.dropzone-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border: 2px dashed #4cae4c;
    background-color: #e8f5e9;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

.dropzone-label:hover {
    background-color: #dcedc8;
    border-color: #1b5e20;
}

.icono-camara {
    font-size: 32px;
    margin-bottom: 6px;
}

.texto-principal {
    font-weight: 600;
    color: #1b5e20;
    font-size: 16px;
}

.texto-secundario {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Hide original input file visually */
.campo-foto-diseno input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* BOTÓN DE ENVIAR Y MENSAJE DE ÉXITO */
.btn-enviar-formulario {
    width: 100%;
    padding: 16px;
    background-color: #1b5e20;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-enviar-formulario:hover {
    background-color: #4cae4c;
}

.btn-enviar-formulario:disabled {
    background-color: #a5d6a7;
    cursor: not-allowed;
}

.caja-exito {
    display: none;
    background-color: #e8f5e9;
    border: 2px solid #1b5e20;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.icono-exito {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1b5e20;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.caja-exito h3 {
    color: #1b5e20;
    font-size: 22px;
    margin-bottom: 8px;
}

.caja-exito p {
    color: #333;
    font-size: 16px;
    margin-bottom: 0;
}

/* RESPONSIVE PARA DISPOSITIVOS MÓVILES */
@media (max-width: 768px) {
    .form-fila {
        flex-direction: column;
        gap: 0;
    }
}