/* ============================================
   AUTOMATE PRO - EDITORIAL AGENCY
   Structure: Puesto Agency style
   Refined, minimal, editorial
   ============================================ */

:root {
    --black: #1B1B18;
    --charcoal: #2C2C28;
    --dark: #3A3A35;
    --text-primary: #1B1B18;
    --text-secondary: #5A5A53;
    --text-muted: #8A8A83;
    --text-light: #B0B0A8;
    --border: #E5E3DF;
    --border-light: #F0EEEA;
    --cream: #F7F6F3;
    --warm-white: #FDFCFA;
    --white: #FFFFFF;
    --accent: #1B1B18;

    /* Green accent - openSUSE inspired */
    --green: #5E9B1F;
    --green-light: #73BA25;
    --green-dark: #4A8017;
    --green-muted: rgba(94, 155, 31, 0.08);
    --green-border: rgba(94, 155, 31, 0.2);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--warm-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "calt" 1;
}

::selection {
    background: var(--green);
    color: var(--white);
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--green);
}

.mb-64 { margin-bottom: 64px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 450;
    letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--green); }
.nav-links a::after { display: none; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-social {
    display: flex;
    gap: 16px;
}

.nav-social a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.nav-social a:hover { color: var(--green); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--black);
    transition: var(--transition);
}

/* ============================================
   LABELS & LINKS
   ============================================ */
.label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    transition: var(--transition);
}

.link-cta:hover {
    gap: 14px;
    color: var(--green);
    border-color: var(--green);
}

.link-cta span {
    font-size: 1.1em;
    transition: var(--transition);
}

.link-sm {
    font-size: 0.8rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.col-label {
    padding-top: 6px;
}

.col-content h2 {
    font-family: var(--font-sans);
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 24px;
}

.col-content h2 em {
    font-weight: 400;
}

.col-content > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 80px;
    background: var(--warm-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 40px;
}

.hero h1 em {
    font-weight: 400;
    color: var(--green);
}

.hero-body {
    max-width: 420px;
}

.hero-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-body strong {
    color: var(--green);
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-border);
    z-index: -1;
}

/* ============================================
   MARQUEE DIVIDER
   ============================================ */
.marquee-divider {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--cream);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding-right: 16px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ============================================
   IMAGE BAND
   ============================================ */
.image-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.image-band-item {
    overflow: hidden;
}

.image-band-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    filter: grayscale(20%);
}

.image-band-item:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* ============================================
   STATS
   ============================================ */
.stats-row {
    display: flex;
    gap: 56px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 450;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-img {
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    filter: grayscale(30%);
}

.feature-block:hover .feature-img img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.feature-block h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-block h3 em {
    font-weight: 500;
}

.feature-block p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-item {
    position: relative;
}

.process-number {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--green-light);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-serif);
    opacity: 0.5;
}

.process-line {
    width: 100%;
    height: 1px;
    background: var(--green-border);
    margin-bottom: 24px;
}

.process-item h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.process-item h3 em {
    font-weight: 500;
}

.process-item ul {
    margin-bottom: 24px;
}

.process-item li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.55;
}

.process-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
}

/* ============================================
   SERVICES LIST
   ============================================ */
.services-list {
    border-top: 1px solid var(--border);
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.service-item:hover {
    padding-left: 16px;
    border-bottom-color: var(--green-border);
}

.service-item:hover .service-arrow {
    transform: translateX(6px);
    color: var(--green);
}

.service-info h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.service-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
}

.service-arrow {
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 24px;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.section-testimonial {
    padding: 100px 0;
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.testimonial-image {
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.testimonial-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote .label {
    display: block;
    margin-bottom: 32px;
}

.testimonial-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 32px;
    font-style: italic;
    text-align: left;
}

.testimonial-quote blockquote em {
    font-weight: 500;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    font-style: normal;
}

.testimonial-author span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: normal;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-card {
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(27, 27, 24, 0.1);
}

.portfolio-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.04);
}

.portfolio-overlay {
    display: none;
}

.portfolio-info {
    padding: 24px 28px;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.portfolio-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
    padding: 0;
    background: var(--black);
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.cta-content {
    padding: 80px 64px 80px 0;
}

.cta-image {
    overflow: hidden;
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
}

.section-cta h2 {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.section-cta h2 em {
    font-weight: 400;
    color: var(--green-light);
}

.section-cta h2 {
    text-align: left;
}

.section-cta p {
    text-align: left;
}

.section-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.75;
}

.section-cta .link-cta {
    color: var(--green-light);
    border-color: var(--green-light);
}

.section-cta .link-cta:hover {
    color: var(--white);
    border-color: var(--white);
}

.section-cta h2 em {
    color: var(--green-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--black);
    font-family: inherit;
    font-size: 0.88rem;
    transition: var(--transition);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}

.form-group textarea {
    border: 1px solid var(--border);
    padding: 16px;
    margin-top: 4px;
    resize: vertical;
}

.form-group textarea:focus {
    border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--white);
    color: var(--black);
}

.contact-info {
    padding-top: 8px;
}

.contact-detail {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:first-child {
    padding-top: 0;
}

.contact-detail .label {
    display: block;
    margin-bottom: 8px;
}

.contact-detail a {
    font-size: 0.92rem;
    color: var(--black);
    font-weight: 450;
}

.contact-detail a:hover {
    color: var(--green);
}

.contact-social {
    display: flex;
    gap: 20px;
}

.contact-social a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 450;
    border-bottom: 1px solid transparent;
}

.contact-social a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--cream);
    padding: 72px 0 36px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 16px;
    max-width: 260px;
    line-height: 1.65;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-title {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-col a:hover { color: var(--green); }

.footer-bottom {
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.7rem;
}

/* ============================================
   FORM SUCCESS
   ============================================ */
.form-success {
    text-align: center;
    padding: 56px 0;
}

.form-success i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    padding: 160px 0 64px;
    background: var(--cream);
}

.page-header .label {
    display: block;
    margin-bottom: 16px;
}

.page-header h1 {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--black);
}

/* ============================================
   SERVICE DETAIL (servicios page)
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content .label {
    display: block;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 16px;
}

.service-detail-content > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-checklist {
    margin-bottom: 28px;
}

.service-checklist li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.5;
}

.service-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.service-detail-img {
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: grayscale(15%);
    transition: var(--transition);
}

.service-detail:hover .service-detail-img img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ============================================
   NAV ACTIVE
   ============================================ */
.nav-links a.active {
    color: var(--green);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ============================================
   WHATSAPP CTA BUTTON
   ============================================ */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #25D366;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    color: #128C7E;
}

.section-cta .whatsapp-btn {
    color: #25D366;
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--green);
}

/* ============================================
   FORM NOTE
   ============================================ */
.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

.form-note a {
    color: #25D366;
    font-weight: 500;
}

.form-note a:hover {
    color: #128C7E;
}

.contact-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.page-404 h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--border);
    letter-spacing: -0.06em;
    line-height: 1;
    margin: 32px 0 16px;
}

.page-404 p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 760px;
}

.legal-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin: 40px 0 12px;
    letter-spacing: -0.02em;
}

.legal-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 16px 20px;
    list-style: none;
}

.legal-content ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.75;
    padding: 3px 0 3px 16px;
    position: relative;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
}

.legal-content a {
    color: var(--green);
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--green-dark);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .hero-image img { height: 360px; }
    .hero-image::after { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .col-content h2 { font-size: 1.55rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-image img { height: 320px; }
    .cta-grid { grid-template-columns: 1fr; }
    .cta-image { display: none; }
    .cta-content { padding: 80px 0; text-align: center; }
    .section-cta h2, .section-cta p { text-align: center; }
    .section-cta .link-cta { justify-content: center; }
    .image-band { grid-template-columns: 1fr 1fr; }
    .image-band-item:last-child { display: none; }
    .service-detail { grid-template-columns: 1fr; gap: 40px; }
    .service-detail.reverse { direction: ltr; }
    .service-detail-img img { height: 320px; }
    .page-header h1 { font-size: 2.2rem; }
    .container { padding: 0 5vw; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--text-secondary);
    }

    .nav-social { display: none; }
    .hamburger { display: flex; z-index: 1001; }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-body { margin-left: 0; margin-right: 0; }
    .hero-image img { height: 280px; }

    .two-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section { padding: 72px 0; }

    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-img img { height: 200px; }
    .image-band { grid-template-columns: 1fr; }
    .image-band-item:nth-child(2),
    .image-band-item:last-child { display: none; }
    .image-band-item img { height: 240px; }

    .portfolio-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .col-content h2 { font-size: 1.4rem; }
    .section-cta h2 { font-size: 1.6rem; }
    .section-testimonial { padding: 72px 0; }
    .testimonial-quote blockquote { font-size: 1.15rem; }
    .stats-row { gap: 32px; flex-wrap: wrap; }

    .page-header { padding: 120px 0 48px; }
    .page-header h1 { font-size: 1.8rem; }
    .service-detail { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .service-detail.reverse { direction: ltr; }
    .service-detail-img img { height: 260px; }
    .service-detail-content h2 { font-size: 1.35rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .cta-buttons { flex-direction: column; align-items: flex-start; gap: 16px; }

    .container { padding: 0 6vw; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-body p { font-size: 0.88rem; }
    .stats-row { flex-direction: column; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-social { flex-wrap: wrap; gap: 12px; }
    .marquee-track span { font-size: 0.65rem; }
    .page-header h1 { font-size: 1.5rem; }
    .page-404 h1 { font-size: 5rem; }
    .service-detail-img img { height: 220px; }
}
