:root {
    --bg-color: #FAFAF9;
    --text-primary: #1C1917;
    --text-secondary: #57534E;
    --accent: #8C7C61;
    --accent-hover: #73644A;
    --card-bg: #FFFFFF;
    --border-color: #E7E5E4;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.navbar:not(.scrolled) .logo, 
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .mobile-menu-btn {
    color: #FFFFFF;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a:not(.btn-primary-outline),
.navbar.scrolled .mobile-menu-btn {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent);
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--accent);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 124, 97, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #FFFFFF;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--text-primary) !important;
}

.btn-primary-outline {
    border: 1px solid currentColor;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
}

.navbar.scrolled .btn-primary-outline {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.navbar.scrolled .btn-primary-outline:hover {
    background-color: var(--text-primary);
    color: #FFFFFF;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 11, 14, 0.85), rgba(11, 11, 14, 0.4));
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 2rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #E5E7EB;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #E5E7EB;
}

.trust-badge i {
    color: var(--accent);
}

/* Sections Common */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
}

/* Categories Grid */
.categories {
    background-color: var(--bg-color);
}

.category-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content h3 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.category-card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

/* Features / PAS Section */
.features {
    background-color: var(--card-bg);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pas-problem {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.pas-solution {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-list i {
    color: var(--accent);
}

.features-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background-color: var(--text-primary);
    color: #FFFFFF;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-container p {
    color: #A8A29E;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Footer */
footer {
    background-color: #141312;
    color: #FFFFFF;
    padding: 4rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #FFFFFF;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.footer-links h4, .footer-contact h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-links a {
    display: block;
    color: #A8A29E;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #A8A29E;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #FFFFFF;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 50%;
    display: inline-flex;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #78716C;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(37,211,102,0.3);
}

/* Social Proof */
.social-proof {
    background-color: var(--bg-color);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars .star-icon {
    width: 20px;
    height: 20px;
}

.testimonial-stars .star-icon.filled {
    fill: currentColor;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-heading);
}

.author-info strong {
    display: block;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    background-color: var(--card-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-info-block {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-block > p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.contact-details li i {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-map {
    min-height: 400px;
}

/* Responsive */
@media (max-width: 992px) {
    .features-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-block {
        padding: 3rem 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 2rem;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: auto;
        margin-bottom: auto;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -4px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-primary) !important;
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active {
        color: var(--text-primary) !important;
    }
    
    .contact-text {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
