:root {
    --primary-color: #8EBA1C;
    --primary-dark: #6a8c14;
    --primary-gradient: linear-gradient(135deg, #a4d626 0%, #6a8c14 100%);
    --secondary-color: #3b3d42;
    --secondary-light: #545252;
    --text-color: #555555;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-section: #f4f7f0;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    /* Security features from Modelo */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.menu-open {
    overflow: hidden !important;
}

/* Gradient Headings */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    /* Prevent image dragging */
    -webkit-user-drag: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 !important;
    padding: 0 !important;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0 0 5px 0 !important;
    /* Only bottom padding when scrolled */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-body);
    margin: 0 !important;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar i {
    font-size: 14px;
}

.top-bar-social {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.top-bar-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    gap: 0;
    align-items: center;
    padding: 5px 0;
    background: transparent;
}

.logo img {
    height: 70px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
    /* removed flex: 1 to bring elements closer */
    justify-content: center;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-header-cta {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border: none;
}

.btn-header-cta:hover {
    background: linear-gradient(135deg, #b4e636 0%, #7ca118 100%);
}

.mobile-menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
    line-height: 1;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../img/banner-nutri3.webp') no-repeat center center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 120px;
    /* Moves content to the lower part */
    color: var(--white);
    text-align: center;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Shimmer Effect from Modelo */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.btn:hover::after {
    left: 150%;
    transition: left 0.7s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 186, 28, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b4e636 0%, #7ca118 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 104, 6, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #4ce285 0%, #25d366 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    transform: translateY(-3px);
}

.btn i.fa-whatsapp {
    font-size: 1.3em;
    margin-right: 8px;
    vertical-align: middle;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-final {
    font-size: 1.3rem;
    padding: 10px 30px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.about-text h3 {
    font-size: 3rem;
    font-weight: 800;
}

.about-text i {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Target Audience */
.target-audience {
    background-color: var(--bg-section);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.target-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(142, 186, 28, 0.25);
    filter: brightness(1.05);
    /* Soft Shiny Entrance */
}

.target-card i {
    font-size: 4rem;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(142, 186, 28, 0.2));
    display: inline-block;
}

.target-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.target-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 50px 30px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 186, 28, 0.15);
    border-color: var(--primary-color);
    filter: brightness(1.03);
    /* Soft Shiny Entrance */
}

.service-card.premium,
.service-card:nth-child(3) {
    border: 2px solid var(--primary-color);
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
}

.service-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card ul {
    margin-bottom: 30px;
    flex-grow: 1;
    padding-left: 0;
}

.service-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
}

.service-card ul li i {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
    display: inline-block;
}

.service-card .btn {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 1rem;
    font-weight: 800;
    margin-top: auto;
    border-radius: 50px;
}

.service-card .btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 4px 15px rgba(142, 186, 28, 0.4);
}

.service-card.premium .btn,
.service-card:nth-child(3) .btn {
    background: linear-gradient(135deg, #4ce285 0%, #25d366 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.service-card.premium .btn:hover,
.service-card:nth-child(3) .btn:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* Methodology */
.methodology-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: none;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(142, 186, 28, 0.1);
    filter: brightness(1.03);
    /* Soft Shiny Entrance */
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-quote {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.separator-line {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 25px;
    background: var(--primary-gradient);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.client-details h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.client-details span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #d0d0d0;
}

.faq-question {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fcfcfc;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px 30px;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    background: #fff;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Final CTA (Creative Professional) */
.final-cta {
    background-color: var(--primary-color);
    /* Solid green background */
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle Texture Overlay */
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    /* Darker dots for subtle effect */
    background-size: 25px 25px;
    opacity: 0.8;
    z-index: -1;
}

.final-cta h2 {
    color: #2c2e33;
    /* Dark gray color for the heading */
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    background: none;
    -webkit-text-fill-color: initial;
    letter-spacing: -1px;
}

.final-cta p {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 50px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.final-cta .btn {
    background: linear-gradient(90deg, #4ce285 0%, #25d366 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 22px 60px;
    border-radius: 60px;
    /* More pill-like */
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Shine Effect */
.final-cta .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.final-cta .btn:hover {
    background: linear-gradient(90deg, #25d366 0%, #17c95f 100%);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

/* Contact Section */
.contact-section {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-info p.contact-desc {
    color: #888;
    margin-bottom: 30px;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 90%;
}

.contact-list {
    margin-bottom: 35px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.contact-list li i {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    display: inline-block;
}

.contact-map iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 400px;
}

.btn-contact {
    width: auto;
    min-width: 300px;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 30px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #b4e636 0%, #7ca118 100%);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 80px 0 0 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
    gap: 30px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: none;
    -webkit-text-fill-color: initial;
}

.footer-logo {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-slogan {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 200px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #b0b0b0;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 35px;
    height: 35px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom-bar {
    background-color: #8EBA1C;
    padding: 15px 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pulse Animation from Modelo */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Safety fix for AOS: ensures elements are visible by default, but permits AOS to override */
[data-aos] {
    opacity: 1;
    transform: none;
}

/* When AOS is enabled, it will handle the hidden state */
html.aos-enabled [data-aos] {
    opacity: 0;
}

html.aos-enabled [data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Specific fix for elements that should fade in - ensures they aren't stuck at opacity 1 before AOS kicks in */
html.aos-enabled [data-aos^="fade"][data-aos].aos-animate {
    opacity: 1;
}

/* Rotating Text from Modelo */
.rotating-text {
    color: var(--primary-color);
    display: inline-block;
    min-width: 200px;
    font-weight: 800;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hero Badge from Modelo Style */
.hero-badge {
    background: rgba(142, 186, 28, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 186, 28, 0.2);
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pulse Animation for Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ce285 0%, #25d366 100%);
    color: white;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    padding: 0 !important;
    /* Force reset of padding from .btn if applied */
    text-decoration: none !important;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.floating-whatsapp i {
    margin: 0;
}

/* Responsive */
@media (min-width: 1300px) and (max-width: 1600px) {
    .hero {
        min-height: 110vh !important;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .about-img {
        order: -1;
        margin: 0 auto;
        max-width: 400px;
    }

    .about-text {
        text-align: center;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #fafafa;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-header-cta {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .services-grid,
    .testimonials-grid,
    .target-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .contact-map iframe {
        height: 300px;
    }

    .final-cta {
        padding: 80px 20px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 32px;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-final {
        padding: 8px 20px;
        font-size: 0.85rem;
        display: flex !important;
        margin: 0 auto !important;
        width: 90%;
        white-space: nowrap !important;
    }

    .about-img {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links,
    .footer-contact-list {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li,
    .footer-contact-list li {
        text-align: center;
        justify-content: center;
    }

    .footer-col h4 {
        margin-top: 10px;
    }

    /* Slightly larger buttons for better mobile interaction */
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 1.05rem;
    }

    .btn-final {
        padding: 6px 15px;
        font-size: 0.8rem;
        white-space: nowrap !important;
    }

    .bottom-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .back-to-top {
        right: 20px;
        bottom: 90px;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}