*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f6f1f0;
    font-family:'Poppins', sans-serif;
    color:#4b3b3f;
}


.brand{
    font-family:'Cormorant Garamond', serif;
    letter-spacing:3px;
    font-size:18px;
    color:#b76e79;
}

.menu{
    display:flex;
    gap:40px;
}

.menu a{
    text-decoration:none;
    font-family:'Poppins', sans-serif;
    font-size:14px;
    letter-spacing:2px;
    color:#4b3b3f;
    transition:0.3s ease;
}

.menu a:hover{
    color:#b76e79;
}

.icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.icons a{
    display:flex;
    align-items:center;
}

.icons img{
    width:22px;
    height:22px;
    object-fit:contain;
}

/* ===== SOBRE NOSOTROS ===== */
.about{
    background: linear-gradient(120deg, #f6f1f0, #fbe9ec);
    padding:80px 0 40px;
}

.about-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center; 
    gap:80px;
}

.about-text{
    flex:1;
    max-width:600px;
    padding-left:40px;
    margin-left:20px;
    border-left:3px solid #d8b1b8;
    padding-left:25px;

}

.about-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    color:#b98b93;
    margin-bottom:18px;
}

.about-text h1{
    font-family:'Cormorant Garamond', serif;
    font-size:64px;
    color:#a8737a;
    margin-bottom:18px;
    line-height:1;
    text-shadow: 0 6px 25px rgba(183,110,121,0.4);
}

.about-subtitle{
    font-size:19px;
    color:#b07d86;
    margin-bottom:28px;
    font-style:italic;
    line-height:1.6;
    max-width:540px;
}

.about-text p{
    font-size:17px;
    line-height:1.9;
    color:#6b555a;
    margin-bottom:18px;
    max-width:600px;
}

.about-quote{
    margin-top:28px;
    padding-left:20px;
    border-left:3px solid #d8b1b8;
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    line-height:1.5;
    color:#a8737a;
    max-width:620px;
}

.about-image{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    width:390px;
    height:510px;
    border:2px solid #e6c7cc;
    border-radius:30px;
    transform:translate(38px,38px);
    z-index:0;
}

.about-image img{
    width:100%;
    max-width:380px;
    background:#fbf8f7;
    padding:28px;
    border-radius:30px;
    position:relative;
    z-index:1;
    box-shadow:0 18px 35px rgba(123, 93, 101, 0.08);
    transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover{
    transform:scale(1.03);
    box-shadow:0 24px 45px rgba(123, 93, 101, 0.14);
}

/* ===== VALORES ===== */
.values-section{
    width:90%;
    max-width:1200px;
    margin:40px auto 100px;
    text-align:center;
}

.values-header{
    max-width:700px;
    margin:0 auto 45px;
}

.values-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    color:#b98b93;
    margin-bottom:15px;
}

.values-header h2{
    font-family:'Cormorant Garamond', serif;
    font-size:52px;
    color:#4b3b3f;
    margin-bottom:15px;
}

.values-header p{
    font-size:16px;
    line-height:1.8;
    color:#7a666b;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.value-card{
    background:#fbf8f7;
    border:1px solid #eadadd;
    border-radius:28px;
    padding:35px 28px;
    transition:transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow:0 10px 25px rgba(100, 78, 84, 0.04);
    position: relative;
    overflow: hidden;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(100, 78, 84, 0.10);
    border-color:#dcb8bf;
}

.value-icon{
    width:68px;
    height:68px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#f7edef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 6px 14px rgba(183, 110, 121, 0.08);
}

.value-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:30px;
    color:#a8737a;
    margin-bottom:12px;
}

.value-card p{
    font-size:15px;
    line-height:1.8;
    color:#6f5d62;
}

/* ===== EFECTO BRILLO EN TARJETAS ===== */

.value-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transition:0.6s;
}

.value-card:hover::after{
    left:100%;
}


    .icons{
        position:absolute;
        left:25px;
        top:50%;
        transform:translateY(-50%);
        gap:12px;
    }

    .about{
        padding:60px 0 20px;
    }

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-text p,
    .about-subtitle,
    .about-quote{
        max-width:100%;
    }

    .about-quote{
        padding-left:0;
        border-left:none;
        border-top:2px solid #d8b1b8;
        padding-top:18px;
    }

    .about-image::before{
        width:300px;
        height:400px;
        transform:translate(18px,18px);
    }

    .about-image img{
        max-width:300px;
        padding:20px;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .values-header h2{
        font-size:42px;
    }

    .about-text h1{
        font-size:48px;
    }
}

@media (max-width: 480px){
    .brand{
        font-size:16px;
    }

    .menu-toggle{
        right:12px;
        font-size:26px;
    }

    .menu{
        right:12px;
        width:210px;
        padding:18px;
        gap:14px;
    }

    .menu a{
        font-size:12px;
        letter-spacing:1px;
    }

    .icons{
        left:12px;
        gap:10px;
    }

    .about-text h1{
        font-size:40px;
    }

    .about-subtitle{
        font-size:17px;
    }

    .values-header h2{
        font-size:36px;
    }

    .value-card{
        padding:28px 22px;
    }
}

.value-icon img{
    width:30px;
    height:30px;
    object-fit:contain;
}

.value-icon img{
    width:35px;
    height:35px;
    object-fit:contain;
}

/* ===== MISIÓN ===== */

.mission{
    background:#fbf8f7;
    padding:90px 20px;
    text-align:center;
}

.mission-container{
    max-width:800px;
    margin:auto;
}

.mission-tag{
    font-size:13px;
    letter-spacing:3px;
    color:#b98b93;
    display:block;
    margin-bottom:18px;
}

.mission h2{
    font-family:'Cormorant Garamond', serif;
    font-size:48px;
    color:#4b3b3f;
    margin-bottom:20px;
}

.mission p{
    font-size:18px;
    line-height:1.9;
    color:#6b555a;
}

/* ===== BANNER FINAL ===== */

.cta-banner{
    background:linear-gradient(
        rgba(75,59,63,0.6),
        rgba(75,59,63,0.6)
    ),
    url("/images/banner-flores.jpg");

    background-size:cover;
    background-position:center;

    padding:120px 20px;
    text-align:center;
    color:white;
}

.cta-content{
    max-width:700px;
    margin:auto;
}

.cta-banner h2{
    font-family:'Cormorant Garamond', serif;
    font-size:48px;
    margin-bottom:20px;
}

.cta-banner p{
    font-size:18px;
    margin-bottom:35px;
    line-height:1.8;
}

.cta-button{
    display:inline-block;
    padding:14px 32px;
    background:#b76e79;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    letter-spacing:1px;
    transition:0.3s;
}

.cta-button:hover{
    background:#9f5e68;
}

/* ===== animación flotante jiji ===== */
@keyframes flotar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.about-image img{
    animation: flotar 4s ease-in-out infinite;
}

/* ===== ANIMACIÓN DE ENTRADA ===== */

@keyframes aparecer {
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* aplicar a toda la sección */
.about-container{
    animation: aparecer 1s ease;
}

/* =========================
   SCROLL PERSONALIZADO
========================= */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b76e79 #f6f1f0;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f6f1f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e4c6cb, #b76e79);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b76e79;
}

/* =========================
   SCROLL PERSONALIZADO
========================= */

* {
  scrollbar-width: thin;
  scrollbar-color: #b76e79 #f6f1f0;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f6f1f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e4c6cb, #b76e79);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b76e79;
}



#btnArriba {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #d98fa3;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
  z-index: 999;
}

#btnArriba:hover {
  background: #c77a8e;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #btnArriba {
    width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  #btnArriba {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
    font-size: 18px;
  }
}


/* PANEL USUARIO */
.user-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(60, 40, 46, 0.28);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1200;
}

.user-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100vh;
    background: rgba(255, 250, 251, 0.96);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: 0.35s ease;
    z-index: 1300;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.user-panel.active {
    transform: translateX(0);
}

.user-panel-close {
    align-self: flex-end;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8c6771;
}

.user-panel-header {
    text-align: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #f3e8eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar img {
    width: 35px;
}

/* TITULOS */
.user-panel-header h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: #4b3b3f;
}

.user-panel-header p {
    margin: 6px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: #8c6771;
}

/* INFO */
.user-panel-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
}

.user-info-box span {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b8898d;
}

.user-info-box strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #4b3b3f;
}

/* BOTONES */
.user-panel-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-panel-btn {
    padding: 14px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;

    /* 🔥 CENTRADO PERFECTO */
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-panel-btn.primary {
    background: #b76e79;
    color: white;
    border: none;
}

.user-panel-btn.secondary {
    border: 1px solid #b76e79;
    color: #b76e79;
    background: transparent;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .user-panel {
        width: 100%;
    }
}

/* FOOTER THE QUEENS */
.footer-the-queens {
    background: url('/images/footer-flores.jpg') center/cover no-repeat;
    margin-top: 80px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

.footer-overlay {
    background: #926971;
    padding: 55px 8% 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h2,
.footer-links h3,
.footer-hours h3 {
    margin: 0 0 16px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
}

.footer-brand h2 {
    font-size: 34px;
    letter-spacing: 2px;
}

.footer-links h3,
.footer-hours h3 {
    font-size: 24px;
}

.footer-brand p,
.footer-links a,
.footer-hours p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #f3d9df;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #d8a5af;
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #c58f9a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contacto-hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contacto-hero-img img {
        max-width: 100%;
        min-height: 260px;
        border-radius: 28px;
    }

    .contacto-cards {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .contacto-bottom {
        grid-template-columns: 1fr;
    }

    .contacto-hero-texto h1 {
        font-size: 46px;
    }

    #map {
        min-height: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .contacto-hero {
        padding: 50px 6% 40px;
    }

    .contacto-main {
        padding: 35px 6% 65px;
    }

    .contacto-hero-texto h1 {
        font-size: 38px;
    }

    .contacto-desc {
        font-size: 14px;
    }

    .contact-card,
    .contacto-info-box,
    .map-card,
    .social-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contacto-info-box h2,
    .map-card h2,
    .social-card h2 {
        font-size: 28px;
    }

    #map {
        min-height: 240px;
    }

    .footer-overlay {
        padding: 45px 6% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .footer-links h3,
    .footer-hours h3 {
        font-size: 22px;
    }
}