/* 
======================
Salud Vigorosa - Main Stylesheet
======================
Colors:
- Main background: #322C5C → #1E1B3A (Foggy purple gradient)
- Accent: #FF944D (Burning amber-orange)
- Additional: #9DBEBB (Cool sage)
- Contrast: #F6F8F9 (Snow white)
- Text: #2B2B2B (Ash black)
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2B2B2B;
    background: linear-gradient(135deg, #322C5C 0%, #1E1B3A 100%);
    min-height: 100vh;
}

a {
    color: #FF944D;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e37a2d;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    background-color: #F6F8F9;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1E1B3A;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FF944D;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #FF944D;
    color: #F6F8F9;
    box-shadow: 0 4px 10px rgba(255, 148, 77, 0.3);
}

.btn-primary:hover {
    background-color: #e37a2d;
    color: #F6F8F9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 148, 77, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FF944D;
    border: 2px solid #FF944D;
}

.btn-secondary:hover {
    background-color: #FF944D;
    color: #F6F8F9;
    transform: translateY(-2px);
}

.btn-nav {
    background-color: #FF944D;
    color: #F6F8F9 !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: #e37a2d;
    color: #F6F8F9 !important;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background-color: rgba(30, 27, 58, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 180px;
}

.logo img {
    height: 50px;
}

/* Navigation */
.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #F6F8F9;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    color: #F6F8F9;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.menu a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FF944D;
    transition: width 0.3s ease;
}

.menu a:hover:before {
    width: 100%;
}

.menu a:hover {
    color: #FF944D;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 27, 58, 0.95);
    color: #F6F8F9;
    padding: 15px 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    margin-right: 20px;
}

.cookie-form {
    flex-shrink: 0;
}

.btn-cookie {
    background-color: #FF944D;
    color: #F6F8F9;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background-color: #e37a2d;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: url('../img/cu1rDg.jpg') no-repeat center center;
    background-size: cover;
    color: #F6F8F9;
    text-align: center;
    padding: 150px 0;
    position: relative;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(50, 44, 92, 0.85) 0%, rgba(30, 27, 58, 0.85) 100%);
    border-radius: 0 0 10px 10px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #F6F8F9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(157, 190, 187, 0.2);
    border-radius: 50%;
}

.advantage-icon img {
    width: 40px;
    height: 40px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #322C5C;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF944D;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(30, 27, 58, 0.9), transparent);
    color: #F6F8F9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    animation: slide 30s infinite;
}

@keyframes slide {
    0%, 25% {
        transform: translateX(0);
    }
    33%, 58% {
        transform: translateX(-100%);
    }
    66%, 91% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial {
    flex: 0 0 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.testimonial p:before,
.testimonial p:after {
    content: '"';
    font-size: 30px;
    color: #9DBEBB;
    position: absolute;
}

.testimonial p:before {
    left: 0;
    top: -10px;
}

.testimonial p:after {
    right: 0;
    bottom: -20px;
}

.testimonial-author {
    font-weight: 600;
    color: #322C5C;
    text-align: right;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px;
    background-color: #fff;
    color: #1E1B3A;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f7f7f7;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #FF944D;
}

.faq-toggle:checked + .faq-question {
    background-color: #9DBEBB;
    color: #1E1B3A;
}

.faq-toggle:checked + .faq-question:after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
}

/* Order Form Section */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-container:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #322C5C 0%, #9DBEBB 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1E1B3A;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #9DBEBB;
    box-shadow: 0 0 0 3px rgba(157, 190, 187, 0.2);
    outline: none;
}

.form-check {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 14px;
    line-height: 1.4;
}

.form-container .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Thank You Page */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h1 {
    color: #322C5C;
    margin-bottom: 30px;
}

.thanks-content p {
    margin-bottom: 20px;
}

.thanks-content .btn-primary {
    margin-top: 20px;
}

/* Legal Pages */
.legal-section {
    padding: 60px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h2:after {
    left: 0;
    transform: none;
}

/* Footer */
.site-footer {
    background-color: #1E1B3A;
    color: #F6F8F9;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
    color: #F6F8F9;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3:after,
.footer-links h3:after,
.footer-legal h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #FF944D;
    border-radius: 1.5px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a,
.footer-links a,
.footer-legal a {
    color: #9DBEBB;
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-legal a:hover {
    color: #FF944D;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-icon {
        display: block;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #1E1B3A;
        flex-direction: column;
        width: 250px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu li {
        margin: 0 0 15px 0;
    }
    
    .menu a {
        display: block;
        padding: 8px 0;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cookie-banner .container {
        flex-direction: column;
    }
    
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .testimonial-slider {
        flex-direction: column;
        animation: none;
    }
    
    .testimonial {
        margin-bottom: 20px;
    }
    
    @keyframes slide {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    .footer-info {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .advantage-card,
    .service-card,
    .testimonial {
        padding: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
} 