/* CSS Custom Properties / Design Tokens */
:root {
    --primary: #c5a880; /* Rose Gold / Champagne tone */
    --primary-dark: #a98d65;
    --primary-light: #f6eedf;
    --accent: #8fa89b; /* Soft Sage Green */
    --text-dark: #2c3539; /* Dark Slate */
    --text-muted: #6b777d;
    --bg-light: #faf7f2; /* Soft Cream */
    --bg-white: #ffffff;
    --bg-accent-gradient: linear-gradient(135deg, #fbf7f0 0%, #f4e8e1 100%);
    --card-shadow: 0 10px 30px rgba(197, 168, 128, 0.08);
    --hover-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(169, 141, 101, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 141, 101, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 1.5px solid var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-accent {
    color: var(--primary-dark);
    font-style: italic;
}

/* Logo imagen real */
.logo-img {
    line-height: 0;
}

.header-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    clip-path: circle(48% at 50% 50%);
    filter: drop-shadow(0 2px 6px rgba(169,141,101,0.10));
    transition: transform 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.04);
}

.footer-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    clip-path: circle(48% at 50% 50%);
    /* Logo es dorado sobre fondo oscuro: aplicar brillo */
    filter: brightness(1.15);
    margin-bottom: 12px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.8rem;
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-nav:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 53, 57, 0.75) 0%, rgba(44, 53, 57, 0.35) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-light);
    display: block;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-down i {
    font-size: 1.5rem;
    color: var(--bg-white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* Manifesto Section */
.manifesto {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
}

.manifesto-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: var(--border-radius);
    background: var(--bg-accent-gradient);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.manifesto-icon {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.manifesto h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.manifesto-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
}

.manifesto-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 120px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 120px 120px 0 0;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-accent-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: 120px 120px 0 0;
    z-index: -1;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 35px;
}

.credential-item {
    display: flex;
    gap: 16px;
}

.credential-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.credential-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.credential-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-footer-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 10px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(5px);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.service-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}

.service-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.service-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Service Card Dropdowns */
.service-details-dropdown {
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    margin-bottom: 16px;
}

.details-toggle-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0 4px;
}

.details-toggle-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.details-toggle-btn.active i {
    transform: rotate(180deg);
}

.details-content {
    display: none;
    padding: 10px 0;
    animation: fadeIn 0.3s ease-in-out;
}

.details-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.details-content li {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.details-content li strong {
    color: var(--text-dark);
}

.booking-notice {
    font-size: 0.75rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-card-booking {
    width: 100%;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid rgba(197, 168, 128, 0.2);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-booking:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

/* Day Spa Section */
.day-spa {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.day-spa-card {
    border-radius: var(--border-radius);
    padding: 60px 48px;
    background: var(--bg-accent-gradient);
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.day-spa-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143, 168, 155, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.day-spa-badge {
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.day-spa-card h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.day-spa-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.day-spa-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.day-spa-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.feature-item p {
    font-size: 0.95rem;
    font-weight: 500;
}

.day-spa-cta {
    max-width: 400px;
    text-align: right;
}

.day-spa-cta .cta-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Gift Cards Section */
.gift-card-section {
    padding: 120px 0;
}

.gift-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gift-card-benefits {
    margin: 24px 0 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gift-card-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.gift-card-benefits i {
    color: var(--accent);
}

.gift-card-visual-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.gift-card-3d {
    width: 400px;
    height: 240px;
    background: linear-gradient(135deg, #2c3539 0%, #151a1c 100%);
    border-radius: 15px;
    padding: 30px;
    color: var(--bg-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(197, 168, 128, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease;
}

.gift-card-3d:hover {
    transform: rotateY(-10deg) rotateX(10deg);
}

.gift-card-3d::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.gift-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gift-card-brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
}

.gift-card-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.gift-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.gift-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.gift-card-footer i {
    color: var(--primary);
    font-size: 1rem;
}

/* Recommendations Section */
.recommendations {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.rec-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.rec-icon {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.rec-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.rec-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rec-footer-banner {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-light);
    border-radius: 30px;
    padding: 15px 30px;
    text-align: center;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.rec-footer-banner p {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.rec-footer-banner i {
    margin-right: 6px;
}

/* Contact / Booking Section */
.contact {
    padding: 120px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.detail-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--card-shadow);
}

.detail-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(169, 141, 101, 0.1);
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #2c3539;
    color: #e5ece9;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 350px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 20px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: wa-pulse 3s infinite;
}

.whatsapp-float i {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.whatsapp-float-text {
    white-space: nowrap;
    display: inline-block;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

@keyframes wa-pulse {
    0%   { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
    50%  { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12); }
    100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 12px 14px;
    }
    .whatsapp-float-text { display: none; }
    .whatsapp-float { border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
    .whatsapp-float i { font-size: 1.8rem; }
}

/* ============================================
   RESPONSIVE WEB DESIGN - MEDIA QUERIES
   ============================================ */


/* --- TABLET (max 1024px) --- */
@media (max-width: 1024px) {
    h2 { font-size: 2.2rem; }
    
    .section-header {
        margin-bottom: 40px;
    }

    .about-container,
    .gift-card-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-container { order: 2; }
    .about-content { order: 1; }
    .gift-card-visual-wrapper { order: 2; }
    .gift-card-info { order: 1; }

    .about { padding: 80px 0; }
    .image-wrapper img { height: 400px; }

    .day-spa-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .day-spa-cta {
        text-align: left;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {
    /* Typography */
    h2 { font-size: 1.9rem; }
    h1 { font-size: 2rem !important; }

    /* Container padding */
    .container { padding: 0 16px; }

    /* --- HEADER --- */
    .header-container { height: 80px; }
    .header-logo-img { height: 60px; }
    .logo { font-size: 1.3rem; }

    .mobile-menu-btn { display: block; }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-light);
        transition: var(--transition-smooth);
        padding: 32px 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .nav-link { font-size: 1.2rem; }
    .btn-nav {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* --- HERO --- */
    .hero {
        height: 90vh;
        padding-top: 64px;
        background-position: 60% center;
    }
    .hero-bg-overlay {
        background: linear-gradient(to bottom, rgba(44,53,57,0.75) 0%, rgba(44,53,57,0.55) 100%);
    }
    .hero-content { max-width: 100%; }
    .hero-subtitle { font-size: 1rem; }
    .hero p { font-size: 0.95rem; }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* --- MANIFESTO --- */
    .manifesto { padding: 60px 0; }
    .manifesto-card { padding: 40px 24px; }
    .manifesto-text { font-size: 1.15rem; }
    .manifesto h2 { font-size: 1.8rem; }

    /* --- ABOUT --- */
    .about { padding: 60px 0; }
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-container { order: 1; }
    .about-content { order: 2; }
    .image-wrapper { border-radius: 80px 80px 0 0; }
    .image-wrapper img { height: 300px; }
    .image-accent-border { display: none; }
    .credentials { gap: 20px; }

    /* --- SERVICES --- */
    .services { padding: 60px 0; }
    .services-filter {
        gap: 8px;
        margin-bottom: 35px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-image { height: 200px; }

    /* --- DAY SPA --- */
    .day-spa { padding: 60px 0; }
    .day-spa-card { padding: 36px 24px; }
    .day-spa-card h2 { font-size: 2rem; }
    .day-spa-subtitle { font-size: 1.1rem; margin-bottom: 28px; }
    .day-spa-features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 100%;
        width: 100%;
    }
    .feature-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    .feature-item p { font-size: 0.85rem; }
    .day-spa-cta { text-align: left; }
    .day-spa-cta .btn { width: 100%; text-align: center; }

    /* --- GIFT CARDS --- */
    .gift-card-section { padding: 70px 0; }
    .gift-card-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gift-card-info { order: 1; }
    .gift-card-visual-wrapper {
        order: 2;
        width: 100%;
    }
    .gift-card-3d {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        padding: 24px;
    }
    .gift-card-title { font-size: 1.4rem; }

    /* --- RECOMMENDATIONS --- */
    .recommendations { padding: 60px 0; }
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rec-card { padding: 30px 20px; }
    .rec-footer-banner { padding: 15px 20px; }

    /* --- CONTACT / FORM --- */
    .contact { padding: 70px 0; }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-wrapper { padding: 28px 20px; }
    .booking-form { gap: 16px; }

    /* --- FOOTER --- */
    .main-footer { padding: 60px 0 24px; }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 36px;
    }
    .footer-brand p { max-width: 100%; }
}

/* --- SMALL PHONES (max 480px) --- */
@media (max-width: 480px) {
    h2 { font-size: 1.6rem; }

    .hero { height: 85vh; }
    .hero-subtitle { font-size: 0.95rem; }

    .manifesto-text { font-size: 1rem; }
    .manifesto-card { padding: 32px 16px; }

    .day-spa-features {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 7px 13px;
        font-size: 0.75rem;
    }

    .service-info { padding: 18px; }
    .service-info h3 { font-size: 1.1rem; }
    .service-price { font-size: 1.1rem; }

    .about-intro { font-size: 1rem; }
    .credential-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gift-card-title { font-size: 1.2rem; letter-spacing: 2px; }
    .gift-card-brand { font-size: 1rem; }
    .gift-card-details { font-size: 0.75rem; }

    .day-spa-card h2 { font-size: 1.7rem; }
    .day-spa-card { padding: 28px 16px; }

    .contact-form-wrapper { padding: 24px 16px; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px; font-size: 0.85rem; }

    .rec-card { padding: 24px 16px; }
    .rec-footer-banner p { font-size: 0.8rem; }

    .social-icons a { width: 36px; height: 36px; font-size: 1rem; }
}

