/* 
   Camila Nunes & Moshe Bergel Model | Premium Design System 3.0
   Fully Responsive & Customizable Landing Page Stylesheet
*/

:root {
    /* Color Palette - Moshe Bergel Theme (Fully Customizable) */
    --primary: #006637;       /* Forest Green (CTA, Buttons, Highlights) */
    --primary-hover: #004d29; /* Darker Green for Hover States */
    --secondary: #3d1a68;     /* Royal Violet (Headings, Secondary Branding) */
    --secondary-hover: #2a1149;
    --text-dark: #1f1f2e;     /* Dark Charcoal (High contrast readability) */
    --text-muted: #5e5e6f;    /* Elegant Medium Grey for paragraphs */
    --bg-light: #ffffff;      /* Section Background: Pure White */
    --bg-alt: #f4f6f9;        /* Section Background: Soft Light Grey/Blue */
    --bg-form: #ffffff;       /* Lead Form Card Background */
    --card-bg: #ffffff;       /* Card Background */
    --border-color: rgba(61, 26, 104, 0.08);
    
    /* Premium Gradients */
    --grad-hero: linear-gradient(135deg, rgba(61, 26, 104, 0.95) 0%, rgba(0, 102, 55, 0.9) 100%);
    --grad-warm: linear-gradient(180deg, #ffffff 0%, #fcfbf9 100%);
    --grad-accent: linear-gradient(135deg, #3d1a68 0%, #006637 100%);
    
    /* Typography */
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.03);
    --shadow-md: 0 15px 30px rgba(61, 26, 104, 0.06);
    --shadow-lg: 0 20px 40px rgba(61, 26, 104, 0.12);
    --shadow-hover: 0 30px 60px rgba(0, 102, 55, 0.15);
    
    /* Layout Spacing */
    --section-padding: 90px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
}

/* Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

p {
    color: var(--text-muted);
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Glassmorphic Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--secondary) !important;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    margin: 0 12px;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons - Premium Feel */
.btn-primary {
    background-color: var(--primary) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 102, 55, 0.25);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 55, 0.35);
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(61, 26, 104, 0.2);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(61, 26, 104, 0.3);
}

.btn-outline-light {
    border: 2px solid #ffffff !important;
    background: transparent !important;
    color: #ffffff !important;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: #ffffff !important;
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

/* Hero Section with Lead Form Overlay */
.hero {
    padding: 170px 0 110px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-hero);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-content h1 span {
    color: #ffffff;
    background: linear-gradient(120deg, #ffffff 0%, #a3d9b9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.2rem;
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.hero-benefits li {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.hero-benefits li i {
    color: #00ff7f;
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Lead Form Card Component */
.lead-card {
    background: var(--bg-form);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.lead-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--grad-accent);
}

.lead-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.lead-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group i {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--text-muted);
    opacity: 0.7;
    transition: var(--transition);
}

.form-control {
    background-color: var(--bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--border-radius-md);
    padding: 14px 14px 14px 50px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 55, 0.1);
    color: var(--text-dark);
}

.form-control:focus + i {
    color: var(--primary);
    opacity: 1;
}

textarea.form-control {
    padding-top: 14px;
    min-height: 100px;
    resize: none;
}

.btn-form {
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 102, 55, 0.2);
    transition: var(--transition);
}

.btn-form:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 102, 55, 0.3);
}

/* Trust Bar / Stats Banner */
.trust-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 0;
}

/* Sections Base Styling */
section {
    padding: var(--section-padding) 0;
}

.section-bg-white {
    background-color: var(--bg-light);
}

.section-bg-alt {
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.section-title span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary);
    display: inline-block;
    position: relative;
    margin-bottom: 1.2rem;
}

.section-title p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Video Explainer Component */
.video-card-wrapper {
    max-width: 850px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    background: #ffffff;
    padding: 12px;
    position: relative;
    transition: var(--transition);
}

.video-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    background: #000000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Alternating Feature Rows */
.feature-row {
    margin-bottom: 80px;
    align-items: center;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.feature-image-wrapper:hover img {
    transform: scale(1.03);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.2rem;
}

.feature-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.15rem;
    margin-right: 12px;
}

/* Treatments / Especialidades Cards Grid */
.premium-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 55, 0.15);
}

.premium-card:hover::after {
    transform: scaleX(1);
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-md);
    background-color: rgba(0, 102, 55, 0.05);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.premium-card:hover .card-icon-box {
    background-color: var(--primary);
    color: #ffffff;
    transform: rotateY(180deg);
}

.premium-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.premium-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-action-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
}

.card-action-link i {
    font-size: 0.85rem;
    margin-left: 8px;
    transition: var(--transition);
}

.premium-card:hover .card-action-link i {
    transform: translateX(5px);
}

/* About Section ("Quem é Camila Nunes") */
.about-image-wrapper {
    position: relative;
    padding: 15px;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
    width: 100%;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 35px;
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    border: 3px solid rgba(61, 26, 104, 0.15);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    transition: var(--transition);
}

.about-image-wrapper:hover::before {
    transform: translate(-10px, -10px);
    border-color: var(--primary);
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-content .biography p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.signature {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    margin-top: 1.5rem;
}

/* Testimonials Carousel (Premium Google Reviews) */
.testimonial-header-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-header-rating .stars {
    color: #ffbf00;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-header-rating span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 40px auto 0;
}

.btn-google-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}

.btn-google-profile:hover {
    border-color: #4285f4;
    color: #4285f4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-google-profile i {
    color: #4285f4;
    font-size: 1.1rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    margin: 15px;
}

.testimonial-card i.quote-icon {
    font-size: 3.5rem;
    color: rgba(61, 26, 104, 0.05);
    position: absolute;
    top: 30px;
    right: 40px;
}

.testimonial-card .stars {
    color: #ffbf00;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    margin-right: 15px;
}

.reviewer-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--secondary);
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.reviewer-info span i {
    color: #34a853; /* Google Green */
    margin-right: 5px;
    font-size: 0.9rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(61, 26, 104, 0.2);
    border: none;
    margin: 0 6px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 6px;
}

/* Newsletter Signup Bar */
.newsletter-bar {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.newsletter-bar h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.newsletter-bar p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    color: #ffffff;
    padding: 15px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--text-dark);
}

.newsletter-form .btn-submit {
    background-color: #ffffff;
    color: var(--primary);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    border: none;
    transition: var(--transition);
}

.newsletter-form .btn-submit:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Section - Dark Royal Violet */
footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 85px 0 35px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h4, footer h5 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 22px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-link:hover i {
    transform: scale(1.2);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px) rotate(360deg);
}

.maps-embed-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.maps-embed-wrapper iframe {
    width: 100%;
    height: 160px;
    border: none;
}

/* Floating Widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.45);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 70px;
    }
    
    .navbar-collapse {
        background-color: #ffffff;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-lg);
        padding: 25px;
        margin-top: 15px;
        border: 1px solid var(--border-color);
    }
    
    .nav-link {
        margin: 10px 0;
    }
    
    .hero {
        padding: 130px 0 70px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px 0;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .feature-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .feature-list {
        display: inline-block;
        text-align: left;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        margin-top: 25px;
    }
    
    .maps-embed-wrapper iframe {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .lead-card {
        padding: 25px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}
