/* ====================================
   MAQUILA PARAGUAI - FlexoParaguay
   Estilos Principais
   ==================================== */

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

:root {
    --primary: #003087;
    --primary-dark: #001f5b;
    --primary-light: #1a4fa0;
    --secondary: #e8000d;
    --accent: #f5a623;
    --green: #00a651;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #1a1a2e;
    --text: #333333;
    --border: #dee2e6;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.2);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); margin-bottom: 50px; max-width: 700px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-subtitle { margin: 0 auto; }

.badge {
    display: inline-block;
    background: rgba(0,48,135,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); color: var(--white); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #c0000b; transform: translateY(-2px); box-shadow: var(--shadow-hover); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: var(--shadow-hover); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* TOP BAR */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 8px 0; font-size: 0.85rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--accent); }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a { width: 26px; height: 26px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.top-bar .social-links a:hover { background: var(--accent); color: var(--dark); }

/* HEADER */
.header { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 50px; height: 50px; background: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; font-weight: 800; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.brand-tagline { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-link { padding: 8px 14px; color: var(--text); font-weight: 500; border-radius: var(--radius); font-size: 0.95rem; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(0,48,135,0.06); }
.nav-cta { background: var(--secondary) !important; color: var(--white) !important; padding: 10px 20px !important; border-radius: var(--radius) !important; font-weight: 600 !important; }
.nav-cta:hover { background: #c0000b !important; color: var(--white) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('assets/images/hero-maquila.jpg'); background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,30,87,0.90) 0%, rgba(0,48,135,0.78) 50%, rgba(0,100,50,0.55) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 750px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: var(--accent); }
.hero-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-description { font-size: 1.15rem; line-height: 1.7; margin-bottom: 35px; opacity: 0.9; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.whatsapp-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--transition); animation: pulse 2s infinite; }
.whatsapp-btn:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-tooltip { background: var(--dark); color: var(--white); padding: 8px 14px; border-radius: var(--radius); font-size: 0.85rem; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); } }

/* WHAT IS MAQUILA */
.what-is-section { background: var(--light-gray); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is-text p { margin-bottom: 20px; color: var(--text); line-height: 1.8; }
.what-is-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 15px; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.feature-icon { width: 40px; height: 40px; background: rgba(0,48,135,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.feature-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 3px; }
.feature-text p { font-size: 0.8rem; color: var(--gray); margin: 0; }
.what-is-image { position: relative; }
.what-is-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.image-badge { position: absolute; bottom: -20px; left: -20px; background: var(--primary); color: var(--white); padding: 20px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); }
.image-badge .number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.image-badge .label { font-size: 0.75rem; opacity: 0.85; }

/* BENEFITS */
.benefits-section { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 35px 25px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--green)); transform: scaleX(0); transition: var(--transition); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.8rem; margin: 0 auto 20px; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.benefit-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 60px 0; text-align: center; }
.cta-banner h2 { font-size: 2rem; font-weight: 700; margin-bottom: 15px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* HOW TO INVEST */
.how-invest-section { background: var(--light-gray); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--green)); z-index: 0; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 20px; text-align: center; position: relative; z-index: 1; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: var(--transition); }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step-number { width: 70px; height: 70px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: 0 0 0 3px var(--primary); }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* ABOUT FLEXO */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.about-services { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.service-tag { display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: var(--light-gray); border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; color: var(--primary); transition: var(--transition); }
.service-tag:hover { background: var(--primary); color: var(--white); }
.service-tag i { color: var(--green); }
.service-tag:hover i { color: var(--accent); }

/* FAQ */
.faq-section { background: var(--light-gray); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question { padding: 20px 25px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; color: var(--primary); gap: 15px; transition: var(--transition); }
.faq-question:hover { background: rgba(0,48,135,0.04); }
.faq-question i { flex-shrink: 0; transition: var(--transition); color: var(--gray); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 25px 20px; }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.contact-info p { color: var(--gray); margin-bottom: 30px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-item-icon { width: 45px; height: 45px; background: rgba(0,48,135,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-item-text a, .contact-item-text p { color: var(--text); font-weight: 500; margin: 0; }
.contact-item-text a:hover { color: var(--primary); }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; transition: var(--transition); color: var(--white); }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); color: var(--white); }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.tiktok { background: #000000; }
.social-btn.threads { background: #000000; }
.social-btn.youtube { background: #FF0000; }
.contact-form { background: var(--light-gray); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-main); color: var(--text); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,48,135,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; gap: 15px; flex-wrap: wrap; }

/* CAROUSEL */
.carousel-section { background: var(--dark); padding: 50px 0; overflow: hidden; }
.carousel-section .section-title { color: var(--white); }
.carousel-section .section-subtitle { color: rgba(255,255,255,0.7); }
.carousel-wrapper { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 20px; animation: scroll-carousel 35s linear infinite; width: max-content; }
.carousel-track:hover { animation-play-state: paused; }
.carousel-item { flex-shrink: 0; width: 280px; height: 160px; border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: var(--transition); }
.carousel-item:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: flex-end; padding: 15px; transition: var(--transition); }
.carousel-item:hover .carousel-item-overlay { background: rgba(0,0,0,0.5); }
.carousel-item-label { color: var(--white); font-size: 0.85rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.carousel-item:hover .carousel-item-label { opacity: 1; transform: translateY(0); }
@keyframes scroll-carousel { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FOOTER */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-name { color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); font-size: 1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.15); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; font-size: 0.9rem; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.6); font-size: 0.8rem; transition: var(--transition); }
.footer-legal-links a:hover { color: var(--accent); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: var(--white); padding: 20px; z-index: 9998; display: none; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.cookie-banner.show { display: block; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.9rem; color: rgba(255,255,255,0.85); min-width: 200px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--green); color: var(--white); padding: 10px 20px; border: none; border-radius: var(--radius); cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.cookie-accept:hover { background: #008a44; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); padding: 10px 20px; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); cursor: pointer; font-size: 0.9rem; transition: var(--transition); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; font-size: 0.9rem; opacity: 0.75; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* LEGAL PAGES */
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 40px 0 15px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 25px 0 10px; }
.legal-content p { margin-bottom: 15px; line-height: 1.8; color: var(--text); }
.legal-content ul { list-style: disc; padding-left: 25px; margin-bottom: 15px; }
.legal-content ul li { margin-bottom: 8px; line-height: 1.7; color: var(--text); }
.legal-date { background: var(--light-gray); padding: 15px 20px; border-radius: var(--radius); font-size: 0.9rem; color: var(--gray); margin-bottom: 30px; }

/* HIGHLIGHT BOX */
.highlight-box { background: linear-gradient(135deg,rgba(0,48,135,0.05),rgba(0,166,81,0.05)); border-left: 4px solid var(--primary); padding: 20px 25px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.highlight-box p { margin: 0; color: var(--text); font-style: italic; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { background: rgba(0,48,135,0.08); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .top-bar-left { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: 80px 20px 20px; box-shadow: -5px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease; z-index: 1001; overflow-y: auto; }
    .nav-menu.open { right: 0; }
    .nav-link { width: 100%; padding: 12px 15px; }
    .hero { min-height: 70vh; }
    .what-is-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .what-is-features, .about-services { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal-links { justify-content: center; }
    .carousel-item { width: 220px; height: 130px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; }
    .image-badge { bottom: -10px; left: -10px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .contact-form { padding: 25px 20px; }
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
