/* =================================
   ADA BEAUTY CENTER
   Andor Digital
   ================================= */

/* =================================
   1. RESET & BASE
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background: #fff;
}

/* =================================
   2. TYPOGRAPHY
   ================================= */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #c9748a;
}

p {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =================================
   3. HEADER & NAVIGATION
   ================================= */

header {
    background: #f9eef1;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo-accent {
    color: #c9748a;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #c9748a;
    transition: all 0.3s;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20,10,30,0.60);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    overflow-y: auto;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.overlay-nav {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.overlay-nav ul {
    list-style: none;
    margin-bottom: 30px;
}

.overlay-nav ul li {
    margin: 12px 0;
}

.overlay-nav ul li a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    letter-spacing: 3px;
    transition: color 0.3s;
}

.overlay-nav ul li a:hover {
    color: #c9748a;
}

.overlay-contact {
    margin-bottom: 25px;
}

.overlay-contact p {
    color: #ddd;
    font-size: 16px;
    margin: 10px 0;
}

.overlay-contact a {
    color: #ddd;
    transition: color 0.3s;
}

.overlay-contact a:hover {
    color: #c9748a;
}

.overlay-contact i {
    color: #c9748a;
    margin-right: 8px;
}

.overlay-legal {
    margin-bottom: 25px;
}

.legal-toggle {
    background: transparent;
    border: 1px solid #c9748a;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.legal-toggle:hover {
    background: #c9748a;
}

.legal-links {
    display: none;
    margin-top: 12px;
}

.legal-links.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-links a {
    color: #bbb;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #c9748a;
}

.overlay-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.overlay-social a {
    color: #fff;
    font-size: 28px;
    transition: color 0.3s;
}

.overlay-social a:hover {
    color: #c9748a;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.btn-header-tienda {
    color: #333;
    font-size: 20px;
    transition: color 0.3s;
}

.btn-header-tienda:hover {
    color: #c9748a;
}

.btn-header-reservar {
    background: #c9748a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family:'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-header-reserv:hover {
    background: #a85d74;
    color: #fff;
}

/* =================================
   4. HERO
   ================================= */

.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(20,10,30,0.60);
    padding: 60px 50px;
    max-width: 550px;
    margin-left: 80px;
    border-left: 4px solid #c9748a;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: #e8b4c0;
    font-weight: 300;
}

.btn-hero {
    border: 2px solid #c9748a;
    color: #fff;
    padding: 12px 35px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    background: transparent;
}

.btn-hero:hover {
    background:#c9748a;
    color: #fff;
}

/* =================================
   5. INTRO
   ================================= */

.intro {
    padding: 80px 40px;
    background: #fdf6f8;
    text-align: center;
}

.intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 15px;
}

.intro-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.intro-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.intro-value span {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =================================
   6. SERVICES
   ================================= */

.services {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.services h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.subtitle {
    color: #999;
    font-size: 16px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.service-card {
    border-radius: 16px;
    height: 320px;
    position: relative;
    cursor: pointer;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    text-decoration: none;
}

.service-card:hover {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-front {
    background: #f9eef1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    text-align: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.card-back {
    background: #c9748a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    color: #fff;
}

.service-card-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.card-front h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #333;
}

.card-front p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.card-back h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.card-back p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-back .service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-back .service-details span {
    color: #fff;
    font-size: 15px;
}

.btn-card {
    background: #fff;
    color: #c9748a;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-list {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9eef1;
    border-left: 4px solid #c9748a;
    border-radius: 4px;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-img {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-name {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.service-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #c9748a;
    font-weight: 700;
}

.service-time {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

.service-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.service-banner {
    background: #f9eef1;
    border-left: 4px solid #c9748a;
    padding: 25px 30px;
    margin: 20px 0 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-banner i {
    font-size: 40px;
    color: #c9748a;
}

.service-banner p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #555;
    font-style: italic;
}

.btn-back {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    border: 2px solid #c9748a;
    color: #c9748a;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #c9748a;
    color: #fff;
}

/* =================================
   7. ABOUT PAGE
   ================================= */

.about-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(30%);
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 8px;
}

.about-subtitle {
    color: #c9748a;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 20px !important;
    color: #c9748a !important;
    font-style: italic;
    border-left: 3px solid #c9748a;
    padding-left: 20px;
    margin-top: 25px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    padding: 40px;
    background: #f9eef1;
    border-radius: 4px;
}

.about-value i {
    font-size: 32px;
    color: #c9478a;
    margin-bottom: 15px;
    display: block;
}

.about-value h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.about-value p {
    font-size: 14px;
    color: #777;
}

/* =================================
   8. LEGAL PAGES
   ================================= */

x.legal-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h2 {
    font-size: 38px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f9eef1;
    padding-bottom: 15px;
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 10px;
    color: #c9748a;
}

.legal page p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 10px 0 15px 20px;
}

.legal-page ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: #c9748a;
    text-decoration: underline;
}

.ciikie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

cookie-table th {
    background: #f9eef1;
    color: #333;
    padding: 10px 15px;
    text-align: left;
    font-weight: 700;
}

.cookie-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #f0e0e5;
    color: #555;
}

.cookie-table tr:hover td {
    background: #fdf6f8;
}

/* =================================
   9. GALLERY
   ================================= */

.service-gallery {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-gallery h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #c9748a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* =================================
   10. PRICES
   ================================= */

/* =================================
   11. REVIEWS
   ================================= */

.reviews {
    padding: 80px 40px;
    background: #fdf6f8;
    text-align: center;
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.review-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(201,116,138,0.1);
    text-align: left;
    position: relative;
}

.review-stars {
    color: #c9748a;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c9748a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =================================
   12. TEAM
   ================================= */

.team {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 700px;
    margin: 40px auto 0;
}

.team-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.team-card:first-child {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
}

.team-card {
    padding: 30px 20px;
    border-radius: 16px;
    background: #fdf6f8;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #c9748a;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.team-role {
    display: block;
    color: #c9748a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* =================================
   13. TIENDA
   ================================= */

.tienda-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:20px;
    margin: 40px 0;
}

.producto-card {
    background: #fdf6f8;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(201,116,138,0.1);
    display: flex;
    flex-direction: row;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius:16px 0 0 16px;
}

.producto-info {
    padding: 20px;
}

.producto-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.producto-info p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.producto-precio {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #c9748a;
    font-weight: 700;
    margin-bottom: 15px;
}

.producto-card:target {
    animation: highlight 3s ease;
    scroll-margin-top: 100px;
}

@keyframes highlight {
    0% { box-shadow: 0 0 0 4px #c9748a; }
    100% { box-shadow: 0 4px 15px rgba(201,116,138,0.1); }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

.btn-whatspp i {
    font-size: 16px;
}

.tienda-categoria {
    margin-bottom: 60px;
    overflow: visible;
}

.tienda-categoria h2 {
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f9eef1;
}

/* =================================
   14. CONTACT & MAP
   ================================= */

.contact-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-page h2 {
    font-size: 38px;
    margin-bottom: 10px;
    text-align: left;
}

.contact-subtitle {
    color: #999;
    margin-bottom: 50px;
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
    padding: 12px 15px;
    border: 1px solid #f0d0d8;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.btn-contact-submit {
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-contact-submit:hover {
    background: #128C7E;
}

.contact-map-box iframe {
    border-radius: 8px;
    width: 100%;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.contact-social a {
    color: #c9748a;
    font-size: 28px;
    transition: color 0.3s;
}

.contact-social a:hover {
    color: #a85d74;
}

/* =================================
   15. FLOATING BUTTON
   ================================= */

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9998;
}

.float-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #c9748a;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-main:hover {
    transform: scale(1.1);
}

.float-action {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.float-call {
    background: #c9748a;
}

.float-whatsapp {
    background: #25D366;
}

.floating-btn.open .float-action {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.float-action:hover {
    transform: scale(1.1);
    color: #fff;
}

/* =================================
   16. FOOTER
   ================================= */

footer {
    background: #1a0a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-content h4 {
    font-family: 'Playfair Display', serif;
    color: #c9748a;
    font-size: 18px;
    Margin-bottom: 15px;
}

.footer-location p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

.footer-location a {
    color: #fff;
    text-decoration: underline;
}

.footer-location a:hover {
    color: #c9748a;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-social a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    color: #c9748a;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-legal a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-legal a:hover {
    color: #c9748a;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.footer-bottom a {
    color: #c9748a;
}

.footer-owner {
    text-align: center;
    margin-bottom: 30px;
}

.footer-owner img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c9748a;
    transition: transform 0.3s;
}

.footer-owner img:hover {
    transform: scale(1.1);
}

/* =================================
   17. FLOATING BUTTON
   ================================= */

/* =================================
   18. MEDIA QUERIES
   ================================= */

@media (max-width: 768px) {
    header {
        padding: 12px 15px;
        flex-wrap: wrap;
    }

    .logo-text {
        font-size: 20px;
    }

    .header-btns {
        margin-left: auto;
        gap: 10px;
    }

    .btn-header-reservar {
        font-size: 11px;
        padding: 8px 14px;
    }

    .btn-header-tienda {
        font-size: 18px;
    }

    .hamburger {
        margin-left: 10px;
    }

    .overlay-nav ul li a {
        font-size: 22px;
    }

    .overlay-contact p {
        font-size: 14px;
    }

    .overlay-social a {
        font-size: 24px;
    }

    .menu-overlay {
        justify-content: flex-start;
        padding-top: 80px;
    }

    .overlay-nav {
        padding: 0;
    }

    .overlay-nav {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .overlay-nav ul {
        width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .menu-overlay {
        width: 100vw;
    }

    .overlay-contact p a {
        word-break: break-word;
    }

    .hero-content {
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px 25px;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero {
        height: 70vh;
        align-items: center;
        padding-bottom: 40px;
    }

    .floating-btn {
        right: 15px;
        bottom: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        overflow: hidden;
    }

    .service-card:hover {
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        height: auto;
        display: block;
        perspective: none;
    }

    .service-card:hover {
        transform: none;
    }

    .card-front,
    .card-back {
        position: static;
        width: 100%;
        height: auto;
        transform: none !important;
        backface-visibility: visible !important;
    }

    .card-front {
        border-radius: 16px 16px 0 0;
    }

    .card-back {
        border-radius: 0 0 16px 16px;
        display: flex;
    }

    .card-front h3 {
        background: #f9eef1;
        padding-top: 16px;
    }

    .team-img {
        width: 80px;
        height: 80px;
    }

    .team-grid {
        max-width: 90%;
    }

    .team-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .team-card {
        padding: 20px 12px;
    }

    .team-card p {
        font-size: 13px;
    }

    .team {
        position: relative;
        overflow: visible;
    }

    .team-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .reviews {
        position: relative;
    }

    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
    }

    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 20px;
    }

    .revew-card p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social,
    .footer-legal {
        align-items: center;
    }

    .footer-owner {
        margin-bottom: 0;
    }

    .tienda-page {
        padding: 0 15px;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .producto-card {
        flex-direction: column;
    }

    .producto-card img {
        width: 100%;
        height: 180px;
        border-radius: 16px 16px 0 0;
    }

    .producto-info {
        padding: 15px;
    }

    .btn-back {
        padding: 8px 16px;
        font-size: 11px;
    }

    .cookie-table {
        display: block;
        overflow-x: auto;
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
        min-width: 80px;
    }

    .legal-page {
        padding: 0 15px;
    }

    .service-products {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .service-products a {
        font-size: 12px;
        padding: 4px 8px;
        background: #f9eef1;
        border-radius: 10px;
        color: #c9748a;
    }

    .contact-page {
        padding: 0 20px;
        margin: 40px auto;
    }

    .contact-page h2 {
        font-size: 28px;
    }

    .contact-subtitle {
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .contact-map-box iframe {
        height: 220px;
    }

    .contact-social {
        gap: 20px;
    }

    .contact-social a {
        font-size: 24px;
    }
}
