:root {
    /* Brand Colors - Usage: Accents ONLY */
    --primary-color: #cb0177;
    --primary-hover: #a60161;
    --accent-color: #feb300;
    
    /* Neutrals & Backgrounds */
    --text-main: #1a1a1a;       /* Almost black for headings */
    --text-body: #4a4a4a;       /* Dark grey for reading */
    --text-light: #717171;      /* Light grey for secondary text */
    
    --bg-body: #ffffff;
    --bg-light: #f9fafb;        /* Very subtle grey for alternating sections */
    --bg-white: #ffffff;
    
    --border-light: #e5e7eb;
    
    /* Shapes & Shadows - Premium Feel */
    --border-radius-card: 16px;
    --border-radius-btn: 999px;
    
    /* Sophisticated, subtle shadow */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em; /* Modern tight spacing */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border-light); /* Subtle separator instead of shadow */
}

/* Top Bar - Minimalist */
.top-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.8rem;
    padding: 8px 0;
    color: var(--text-light);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Nav */
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo img {
    height: 48px; /* Slightly smaller for elegance */
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 4px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

/* Minimalist indicator */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

/* Header Socials */
.header-socials {
    display: flex;
    gap: 12px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--border-light);
}

.social-icon-header {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.social-icon-header.facebook {
    background-color: #3b5998;
}

.social-icon-header.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-header:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-icon-header:hover::after {
    width: 0 !important; /* Disable underline for icons */
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 600px; /* Generous height */
    display: flex;
    align-items: center;
    /* background-image removed for slider */
    margin-bottom: 0;
    overflow: hidden;
}

/* Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-controls button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Subtle Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darkening just enough for text readability, no colors */
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    /* Removed background box completely */
    color: #ffffff;
}

@keyframes shimmer-text {
    0% { background-position: -200% center; }
    20% { background-position: 200% center; }
    100% { background-position: 200% center; }
}

.hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    
    /* Shimmer Effect */
    background: linear-gradient(
        to right, 
        #ffffff 0%, 
        #ffffff 40%, 
        #feb300 50%, 
        #ffffff 60%, 
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback for some browsers */
    animation: shimmer-text 6s linear infinite;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px; /* Increased to allow 2 lines naturally */
}

@keyframes btn-vibrate {
    0% { transform: translateX(0); }
    3% { transform: translateX(-3px); }
    6% { transform: translateX(3px); }
    9% { transform: translateX(-3px); }
    12% { transform: translateX(3px); }
    15% { transform: translateX(0); }
    100% { transform: translateX(0); }
}

.hero .btn {
    animation: btn-vibrate 5s infinite;
}

.hero .btn:hover {
    animation: none;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    /* Subtle shadow, not glowing */
    box-shadow: 0 4px 12px rgba(203, 1, 119, 0.25);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(203, 1, 119, 0.35);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #333;
    box-shadow: 0 4px 12px rgba(254, 179, 0, 0.25);
}

.btn-accent:hover {
    background-color: #e5a100;
}

/* --- SECTIONS GENERAL --- */
section {
    padding: 100px 0; /* More air */
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-main);
}

/* Clean underline */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
    opacity: 0.8;
}

/* --- SERVICES --- */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 0; /* Full bleed image */
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden; /* For image rounding */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 240px; /* Large, dynamic image */
    object-fit: cover;
    margin: 0;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    text-align: left;
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- WELCOME --- */
.welcome {
    background-color: var(--bg-white);
}

.welcome .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.welcome-text p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.welcome-img img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
}

/* Pillars List (About Page) */
.pillars-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.pillars-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.pillars-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px; /* Align with text */
    min-width: 20px;
    text-align: center;
}

/* --- PRODUCTS / FINANCING --- */
/* Changed from dark background to light/clean style */
.products {
    background-color: var(--bg-light);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.products::after {
    display: none; /* Removed the heavy gradient circle */
}

.products .section-title {
    color: var(--text-main);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: rgba(203, 1, 119, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.product-item:hover .product-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.product-item:hover .product-icon i {
    color: #ffffff;
}

.product-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Subtle accent line on top instead of side */
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-item h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 16px;
    margin-top: 10px;
}

.product-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- CTA SECTION --- */
.cta-section {
    background-image: url('../mans-hands-holding-open-wallet-with-money-PYDLKNP.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -1;
    display: block;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-light);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #9ca3af;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-item::before {
    content: '“';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    margin-top: -30px;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-main);
}

/* --- FOOTER --- */
footer {
    background-color: #1a1a1a; /* Dark premium background */
    color: #a3a3a3;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Links Column */
.links-col ul li {
    margin-bottom: 14px;
}

.links-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.links-col ul li a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.links-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.links-col ul li a:hover i {
    transform: translateX(3px);
}

/* Contact Column */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-list li span {
    color: #d1d5db;
}

/* Footer Socials */
.footer-col .social-links {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.footer-col .social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.footer-col .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links a {
    margin-left: 24px;
    font-size: 0.9rem;
    color: #737373;
}

.legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}

/* --- CONTACT & FORMS --- */
.contact-container {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-info-block {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-right: 1px solid var(--border-light);
}

.contact-method {
    margin-bottom: 24px;
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook { background: #3b5998; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.instagram { background: #E1306C; }

.contact-form-block {
    padding: 60px 40px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db; /* Lighter border */
    border-radius: 8px; /* Slightly more square for inputs */
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(203, 1, 119, 0.1);
}

/* --- NEWS & ARTICLES --- */
.news-section {
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-card:hover img {
    transform: scale(1.03);
}

.news-content {
    padding: 30px;
}

.news-date {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 0;
}

/* News Link */
.news-content a {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.news-content a:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

/* --- WHATSAPP FLOAT --- */
@keyframes whatsapp-vibrate {
    0% { transform: scale(1) rotate(0); }
    3% { transform: scale(1.1) rotate(3deg); }
    6% { transform: scale(1.1) rotate(-3deg); }
    9% { transform: scale(1.1) rotate(3deg); }
    12% { transform: scale(1.1) rotate(-3deg); }
    15% { transform: scale(1) rotate(0); }
    100% { transform: scale(1) rotate(0); }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: all 0.3s ease;
    animation: whatsapp-vibrate 5s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    animation: none; /* Stop vibration on hover */
}

/* --- PAGE HEADERS (Internal) --- */
.page-header {
    /* Modern Gradient Background */
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0151 100%);
    padding: 60px 0; /* Reduced height for compactness */
    text-align: center;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    margin-bottom: 0;
}

/* Decorative Circle Overlay */
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

/* Subtle Bottom Line */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
}

.page-header h1 {
    font-size: 2.5rem; /* Slightly smaller, more refined */
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .welcome .container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-block {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 20px;
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero {
        min-height: 450px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-socials {
        display: flex;
        justify-content: center;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}
