:root {
    --primary-color: #896149;
    --primary-dark: #6d4a36;
    --secondary-color: #896149;
    --text-dark: #896149;
    --text-light: #a07a5f;
    --bg-light: #ecd3bb;
    --bg-lighter: #f5e8d8;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #896149 0%, #a07a5f 100%);
    --gradient-light: linear-gradient(135deg, #ecd3bb 0%, #f5e8d8 100%);
    --gradient-dark: linear-gradient(135deg, #6d4a36 0%, #896149 100%);
    --shadow-sm: 0 2px 8px rgba(137, 97, 73, 0.1);
    --shadow-md: 0 4px 16px rgba(137, 97, 73, 0.12);
    --shadow-lg: 0 8px 32px rgba(137, 97, 73, 0.15);
    --new-bg-color: #ecd3bb;
    --new-text-color: #896149;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--new-bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Navigation */
.lang-nav {
    background: var(--new-bg-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .lang-nav {
        background: rgba(236, 211, 187, 0.95); /* rgba for #ecd3bb */
    }
}

.lang-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-switcher-top {
    display: flex;
    gap: 0.5rem;
}

.lang-switcher-top a {
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lang-switcher-top a:hover {
    background: var(--white);
}

.lang-switcher-top .lang-active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    background-size: cover;
    background-position: center;
    color: var(--text-dark);
    text-align: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: none;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(137, 97, 73, 0.2);
    border: 2px solid var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(137, 97, 73, 0.3);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-primary:hover::before {
    width: 100%;
}

@media (hover: none) and (pointer: coarse) {
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    .benefit-card:active,
    .testimonial-card:active {
        transform: scale(0.99);
    }
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-lighter);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    will-change: transform;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

@media (hover: none) {
    .benefit-card:hover {
        transform: none;
    }
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--new-bg-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg-lighter);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d9c0a3 0%, #f0e4d0 100%); /* Lighter version of our theme */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    will-change: transform;
}

@media (min-width: 769px) {
    .gallery-placeholder {
        font-size: 1.2rem;
    }
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--new-bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.pricing .section-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.price-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.price-package {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(137, 97, 73, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.price-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(137, 97, 73, 0.25);
    border-color: var(--primary-color);
}

.package-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.package-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.price-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.price {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.unit {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-features {
    list-style: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(137, 97, 73, 0.1);
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-lighter);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--white);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--new-bg-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    will-change: transform;
    transition: transform 0.3s ease;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--bg-lighter);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border-color: #1ea952;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    filter: brightness(1.1);
}

/* Button Icons */
.btn-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Active state for buttons */
.btn:active {
    transform: translateY(-1px);
}

/* Ripple effect on click */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.footer-brand p {
    color: #aaa;
}

.footer-contact h4,
.footer-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-hours p {
    color: #aaa;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #aaa;
}

/* Add smooth transition for sections */
section {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Container needs to be flexible for centering */
.benefits > .container,
.how-it-works > .container,
.gallery > .container,
.pricing > .container,
.faq > .container,
.testimonials > .container,
.cta > .container {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="date"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #d9c0a3;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.booking-success {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    margin: 2rem 0;
}

.booking-success h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    html {
        scroll-snap-type: y proximity; /* Less strict on mobile */
    }
    
    .lang-nav .container {
        justify-content: center;
    }
    
    .lang-switcher-top {
        gap: 0.3rem;
    }
    
    .lang-switcher-top a {
        padding: 0.3rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 1.5rem;
    }
    
    .benefits,
    .how-it-works,
    .gallery,
    .pricing,
    .testimonials,
    .cta {
        padding: 60px 0;
        min-height: auto; /* Allow natural height on mobile */
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: row;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .price-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-package {
        padding: 2rem 1.5rem;
    }
    
    .package-price .amount {
        font-size: 3rem;
    }
    
    .package-name {
        font-size: 1rem;
    }
    
    .price-card {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .unit {
        font-size: 1.2rem;
    }
    
    .price-features {
        font-size: 0.95rem;
    }
    
    .price-features li {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-stars {
        font-size: 1.3rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
    
    .cta-tagline {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact ul,
    .footer-hours {
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .benefits,
    .how-it-works,
    .gallery,
    .pricing,
    .faq,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .lang-nav {
        padding: 0.8rem 0;
    }
    
    .lang-nav .container {
        padding: 0 15px;
    }
    
    .lang-switcher-top a {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 70px 15px 30px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .benefits,
    .how-it-works,
    .gallery,
    .pricing,
    .testimonials,
    .cta {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .step {
        gap: 0.8rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .price-packages {
        gap: 1rem;
    }
    
    .price-package {
        padding: 1.5rem 1rem;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .package-price .currency {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.3rem;
    }
    
    .unit {
        font-size: 1rem;
    }
    
    .price-card {
        padding: 1.5rem 1rem;
    }
    
    .price-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-stars {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-tagline {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    .footer-contact h4,
    .footer-hours h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-contact ul li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}
