
	@charset "utf-8";
/* CSS Document */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
	
}




nav {
  width: 100%;
  max-width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body{
      font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #d02124;
}
/* Animación inicial */


/* NAVBAR */
.logo img{
    height:100px;        /* Controla el tamaño del logo */
    width:auto;         /* Mantiene proporción */
    display:block;
	transition:0.5s ease; /* Animación suave */
}
nav{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
	flex: wrap;

    /* 👇 EFECTO VIDRIO */
 
    backdrop-filter: blur(10px);      /* Difumina lo que está detrás */
    -webkit-backdrop-filter: blur(10px); /* Compatibilidad Safari */

	background:rgba(195,33,39,0.6);
	backdrop-filter: blur(5px);
    border-bottom:1px solid rgba(255,255,255,0.2);
    transition:0.3s ease;
    z-index:1000;
}
h1{
	margin-bottom: 20px;
	font-size: 300%;
	text-align: left;
	Color:#401810;
	width: 50%;

	margin-bottom: 40px;
}
nav h2{
    color:white;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:white;
    padding:8px 15px;
    border-radius:6px;
    transition:0.3s ease;
	
}

.icon-whatsapp i{
	
     align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;

	
}
.icon-whatsapp{
    position: relative;
    top: -6px;
}


nav a:hover{
    background:rgba(255,255,255,0.2);
}
nav.scrolled{
    background:rgba(195,33,39, 0.9);
    backdrop-filter: blur(15px);
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* 👇 Cambio de fondo al pasar el mouse */
nav:hover{
		background:rgba(195,33,39, 0.8);
}
nav a:hover{
  	background:#000000;
    color:White;
	border-radius: 20px;
}

/* 👇 Cambio de fondo al pasar el mouse */
nav:hover{
		background:rgba(195,33,39, 0.8);
}
nav a:hover{
  	background:#000000;
    color:White;
	border-radius: 20px;

}
nav a.active{
    border-bottom:1px solid #fff;
}
/* Botón hamburguesa */
.menu-toggle{
 
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
    padding:10px;
}           /* 👈 Color del icono */


.menu-toggle:hover{
    background:#edcbbc;     /* 👈 Color al pasar el mouse */
}
.close-menu{
    position:absolute;
    top:20px;
    right:30px;
    font-size:35px;
    color:white;
    cursor:pointer;
}
.close-menu{
    display: none;
}

nav ul.show .close-menu{
    display: block;
}



/*BODY */


.seccion1 {
  display: flex;
  background:#d02124;	
  margin-top: 30px;
  height: 900px;
  color: white;
}

.contenedor {
  width: 80%;
  max-width: 85%; /* límite profesional */
  margin: 0 auto; /* centra horizontalmente */
  display: grid;
  grid-template-columns: 2fr  1fr;
  gap: 40px; /* espacio entre columnas */
  align-items: center;
}

.columna {
  flex: 1; /* Divide en 2 partes iguales */
  padding: 60px;
}
.columna.derecha{

	  border-radius: 30px;
	 
}

.columna.izquierda {
  display: flex;
  flex-direction: column; /* 👈 clave */
  justify-content: center;
  align-items: flex-start; /* opcional: alinea a la izquierda */
}

.columna.derecha img {
	 width:100%;
    max-width:420px;
    min-width:260px;
	border-radius: 30px;
    /* Nunca ocupa más del 80% de la columna */
  height: auto;     /* Mantiene proporción */
}
h2.subtitulos{
	margin-bottom: 20px;
	font-size:270%;
	color:#FFFFFF;
	font-family: "Arial Black", Arial, sans-serif;
	
}
.subtitulos{
		width:90%; 
	}
p.textos1{
	font-size: 26px;
	color:#FFFFFF;
	  text-align: justify;
    text-justify: inter-word;
}
/* BOTÓN */
.cta{
    background:white;
    padding:12px 30px;
    border-radius:30px;
    color:#401810;
    text-decoration:none;
    display: block;
  	width: fit-content;
  	margin: 20px 0 0 0;
	font-family: "Arial Black"
}

.cta:hover{
	background: rgba(255,255,255,0.68);
	color:#401810;
	transition:0.4s ease;
}


/* ================= CARRUSEL ================= */

/* CONTENEDOR */
.slider {
  background: #FFF;
  overflow: hidden;
  width: 100%;
  padding: 60px 0;
}
.slider h2{
	margin-bottom: 20px;
	text-align: center;
	font-size: 250%;
	color:#401810;
	font-family: "Arial Black", Arial, sans-serif;
}

/* TRACK */
.track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  padding-left: 40px;
}

.track{
    user-select:none;
    -webkit-user-select:none;
    touch-action:pan-y;
}

.card img,
.card h3,
.card p{
    user-select:none;
    -webkit-user-select:none;
}

/* CARD */
.card {
  min-width: calc(100% / 3 - 20px);
  height: 300px;
  perspective: 1000px;
  cursor: pointer;
}

/* INNER */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

/* FLIP */
.card.flip .card-inner {
  transform: rotateY(180deg);
}

/* FRONT / BACK */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;       /* 👈 clave */
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  backface-visibility: hidden;
}
.card-front img,
.card-back img {
  width: 60%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  border-radius: 10px;
}
.card-front h3,
.card-back h3 {
  margin: 0;
  font-size: 20px;
  text-align: center;
}

.card-front p,
.card-back p {
  font-size: 14px;
  text-align: center;
  color: rgba(64,24,16,0.90);
}

/* FRONT */
.card-front {
  background: white;
  color: #401810;
}

/* BACK */
.card-back {
  text-align: left;
	color: #401810;
	background:#FCFCFC; 
  transform: rotateY(180deg);
}

/* HOVER PRO */
.card:hover {
  transform: scale(1.05);
  transition: 0.3s;
}


.img-sect{
 
    width:100%;
    height:400px; /* Puedes cambiar altura */
	background-image: url("Imagenes/PG_Lavanderia.png"); /* Tu imagen */
    background-size: cover;       /* 🔥 llena todo el espacio */
    background-position: center;  /* centra la imagen */
    background-repeat: no-repeat;

}

.track{
  cursor: grab;
  user-select: none;
}

.track:active{
  cursor: grabbing;
}

.card img,
.card p,
.card h3{
  pointer-events:none;
  user-select:none;
}

/*FOOTER*/
.footer-contenedor {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 80px;
}
.footer {
  color: #401810;
  padding: 60px 0 20px;
  background: #EFCEB6;
}
.footer-contenedor img {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  display: block;
}


.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
	color:#401810; 
	
}

.footer-col p,
.footer-col a {
	color:#401810; 
  text-decoration: none;
  line-height: 1.8;
}

.footer-col a:hover {
  color:#401810; 
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color:#401810; 
}

/**/

.whatsapp-footer{
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    
}

.whatsapp-footer .fa-circle{
     transform: translate(-10%, 5%);
    font-size: 22px;
}

.whatsapp-footer .whatsapp-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%);
    color: white;
    font-size: 12px;
}


/* IMÁGENES SEGURAS */
img{
  max-width:100%;
  height:auto;
  display:block;
}


/* Responsive */

/* ---------- TABLET ---------- */
@media (max-width:1024px){

  .contenedor{
    width:90%;
    max-width:1200px;
    gap:30px;
  }

  .columna{
    padding:30px;
  }

  h2.subtitulos{
    font-size:clamp(2rem,5vw,3rem);
  }

  p.textos1{
    font-size:1.3rem;
    line-height:1.7;
  }

  .card{
    min-width:calc(100% / 2 - 20px);
  }
	
	  /* ===== FOOTER ===== */

   .footer-contenedor {
        width: 92%;
        gap: 30px;
	   margin:0 auto 25px auto;
    }

}


@media(max-width:900px){
	
    .columna.derecha{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .columna.derecha img{
        display: block;
        margin: 0 auto;
    }
	
	
	
	
	.seccion1{
    height:auto;
    padding:140px 0 80px;
  }

  .contenedor{
    grid-template-columns:1fr;
    width:90%;
    gap:40px;
  }

  .columna{
    padding:10px;
  }

  .columna.izquierda{
    align-items:flex-start;
  }

  .columna.derecha{
    display:flex;
    justify-content:flex-start;
  }

  .columna.derecha img{
    max-width:70%;

	  
  }

  h2.subtitulos{
    width:100%;
    font-size:clamp(2rem,8vw,3rem);
    line-height:1.1;
  }

  p.textos1{
    font-size:1.3rem;
    line-height:1.8;
  }

  .cta{
    margin-top:30px;
  }

  /* ===== CARRUSEL ===== */

  .slider{
    padding:50px 0;
  }

  .slider h2{
    font-size:clamp(2rem,7vw,3rem);
    padding:0 20px;
  }

  .track{
    padding-left:20px;
    gap:15px;
  }

  .card{
    min-width:85%;
    height:320px;
  }

  .card-front,
  .card-back{
    padding:20px;
  }

  .card-front img,
  .card-back img{
    width:70%;
    height:170px;
    object-fit:cover;
  }

  .card-front h3,
  .card-back h3{
    font-size:1.1rem;
  }

  .card-front p,
  .card-back p{
    font-size:0.95rem;
    line-height:1.5;
  }

  .img-sect{
    height:250px;
  }

  /* ===== FOOTER ===== */

   .footer-contenedor {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 40px;
    row-gap: 30px;
    padding: 0 20px;
  }

  /* Logo y descripción */
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  /* Contacto */
  .footer-col:nth-child(2) {
    border-right: 3px solid rgba(64, 24, 16, 0.25);
    padding-right: 20px;
  }

  /* Enlaces */
  .footer-col:nth-child(3) {
    padding-left: 5px;
  }
	


  /* ---------- HAMBURGUESA ---------- */
	
  
    .menu-toggle{
        display:block;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;

        position:fixed;
        top:0;
        right:0;

        width:90%;
        height:100vh;

        background: rgba(53,11,12,0.89);

        /* Oculto fuera de pantalla */
        transform:translateX(100%);

        transition:transform 0.4s ease-in-out;

        z-index:999;
    }

    nav ul.show{
        transform:translateX(0);
    }

 nav ul li{
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

nav ul li a{
    display: block;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    color: white;
}
	nav ul li a:hover,
nav ul li a:active{
    background: rgba(255,255,255,0.1);
}
/* ---------- HAMBURGUESA ---------- */

	

	
	/*CARRUSEL*/

  .card {
    min-width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 600px) {
  .card {
    min-width: 80%;
  }
}

/* ---------- MOBILE PEQUEÑO ---------- */
@media (max-width:480px){
 
	  .logo{
        width: auto;
        height: auto;
    }

    .logo img{
        width: auto;
        max-width: 200px;
        height: auto;
        object-fit: contain;
        display: block;
    }
	
	.logo{
    flex-shrink: 0;
}
	
  .seccion1{
    padding:120px 0 60px;
  }

  .contenedor{
    width:92%;
  }

  h2.subtitulos{
    font-size:2.2rem;
  }

  p.textos1{
    font-size:1.2rem;
  }

  .columna.derecha img{
    max-width:85%;
  }

  .card{
    min-width:90%;
    height:450px;
  }

  .card-front img,
  .card-back img{
    width:75%;
    height:160px;
  }
	.card-front p,
.card-back p {
  font-size: 18px;
  text-align: center;
  color: rgba(64,24,16,0.90);
}


  .slider h2{
    font-size:2rem;
  }

  .img-sect{
    height:200px;
  }

 
	
  .footer-contenedor {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0;
    padding: 0 20px;
  }

  .footer-col {
    width: 100%;
    max-width: 350px;
    padding: 20px 0;
  }

  /* La primera sección sigue ocupando todo */
  .footer-col:first-child {
    grid-column: auto;
    border-bottom: 1px solid rgba(64, 24, 16, 0.25);
  }

  /* Contacto */
  .footer-col:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(64, 24, 16, 0.25);
    padding-right: 0;
  }

  /* Enlaces */
  .footer-col:nth-child(3) {
    padding-left: 0;
  }
	.whatsapp-footer .fa-circle{
     transform: translate(-15%, 5%);
    font-size: 22px;
}

}
	