/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.7), rgba(129, 212, 250, 0.7)), 
                url('../assets/img/hero/spa-background.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 2rem 2rem;
    position: relative;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-content {
    z-index: 2;
}

.header-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.header-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    background: #25d366;
    border-radius: 50%;
    padding: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 60px;
    height: 60px;
    z-index: 10;
}

.whatsapp-icon img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: block;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Services Section */
.services {
    background: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.services h2 {
    color: #1976d2;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: #1976d2;
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
    font-weight: 600;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    padding: 0 1.5rem;
    text-align: center;
}

.service-link {
    display: block;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
    text-decoration: none;
    color: white;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #1976d2;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1976d2;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white !important;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: #25d366;
    color: white !important;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.whatsapp-contact-btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.whatsapp-contact-btn:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* WhatsApp Fixed Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
}

/* Service Detail Pages */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 2rem;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2196f3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-content h2 {
    color: #1976d2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
    padding: 0 2rem;
}

.detail-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h3 {
    color: #1976d2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.detail-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-section ul {
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.detail-section li {
    margin-bottom: 0.5rem;
}

/* Treatment and service types */
.treatment-types, .massage-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.treatment-type, .massage-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
}

.treatment-type h4, .massage-type h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* Zones grid */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.zone-item {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.zone-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.zone-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Price list */
.price-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    color: #333;
    font-weight: 500;
}

.price {
    color: #2196f3;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #1976d2;
}

.step-content p {
    margin: 0;
    color: #666;
}

/* Recommendations */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.recommendation-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.recommendation-item h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.recommendation-item ul {
    margin: 0;
    padding-left: 1.2rem;
}

/* Technology section */
.technology-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.tech-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.tech-item:hover {
    border-color: #2196f3;
}

.tech-item h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* Product categories */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
}

.category h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.category ul {
    margin: 0;
    padding-left: 1.2rem;
}

/* Featured products */
.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-item:hover {
    border-color: #2196f3;
    transform: translateY(-5px);
}

.product-item h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

.product-item p {
    color: #666;
    margin-bottom: 1rem;
}

.product-item .price {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
}

/* Brands grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.brand-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.brand-item:hover {
    border-color: #2196f3;
}

.brand-item h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* Analysis points */
.analysis-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.analysis-point {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.analysis-point h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* Aromatherapy options */
.aromatherapy-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.aroma-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.aroma-option:hover {
    border-color: #2196f3;
}

.aroma-option h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* Routines */
.routines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.routine {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
}

.routine h4 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.routine-step {
    margin-bottom: 0.8rem;
}

.routine-step strong {
    color: #333;
}

/* Advantages */
.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.advantage-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.advantage-item:hover {
    border-color: #2196f3;
}

.advantage-item h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* Products info */
.products-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-brand {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.product-brand h4 {
    color: #1976d2;
    margin-bottom: 0.8rem;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

.cta-btn.whatsapp {
    background: #25d366;
    color: white;
}

.cta-btn.phone {
    background: white;
    color: #1976d2;
}

.cta-btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #2196f3;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #1976d2;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.language-selector select:focus {
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
}