/* ============================================
   LOGÍSTICA GABY — DISEÑO MODERNO 2025
   Paleta: Verde petróleo + Coral + Hueso
   Tipografía: Gilroy (display + body)
============================================ */

:root {
    --navy:   #0d2b2b;
    --navy-2: #133b3b;
    --navy-3: #1a4d4d;
    --amber:  #e8533a;
    --amber-2:#f07a64;
    --amber-dim: rgba(232,83,58,0.12);
    --white:  #fdfaf6;
    --off-white: #f2ede6;
    --text:   #0d2b2b;
    --muted:  #5a7272;
    --border: rgba(255,255,255,0.08);

    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    --radius:   14px;
    --radius-lg: 24px;
    --shadow:   0 4px 30px rgba(13,43,43,0.12);
    --shadow-lg: 0 20px 60px rgba(13,43,43,0.18);

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

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
}

em { font-style: normal; color: var(--amber); }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

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

/* ======= BUTTONS ======= */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--amber-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,83,58,0.38);
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.section-tag.light { color: var(--amber-2); }
.section-tag.light::before { background: var(--amber-2); }

/* ======= NAVBAR ======= */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15,23,40,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--amber);
    color: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav-menu a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-actions { flex-shrink: 0; margin-left: 16px; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 100%; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ======= MOBILE MENU ======= */
.mobile-menu-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu-modal.active { display: flex; }

.close-modal-btn {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-nav a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    transition: var(--transition);
    padding: 8px 16px;
}

.mobile-nav a:hover { color: var(--amber); }

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

.mobile-social a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-social a:hover { background: var(--amber); color: var(--navy); }

/* ======= HERO ======= */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 700px; height: 700px;
    background: var(--amber);
    top: -200px; right: -200px;
    animation: drift 18s ease-in-out infinite;
}

.shape-2 {
    width: 400px; height: 400px;
    background: #1a8c6e;
    bottom: -100px; left: -100px;
    animation: drift 22s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px; height: 250px;
    background: var(--amber);
    top: 50%; left: 40%;
    animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(30px,-20px) scale(1.05); }
    66%      { transform: translate(-20px,20px) scale(0.97); }
}

.hero-slider { flex: 1; }

.swiper-slide {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    width: 100%;
}

.hero-text { color: var(--white); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-dim);
    color: var(--amber);
    border: 1px solid rgba(245,166,35,0.25);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat { text-align: center; }

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--amber);
}

.stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

.hero-image { display: flex; align-items: center; justify-content: center; }

.hero-img-wrap {
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

.hero-img-wrap img { max-height: 420px; object-fit: contain; }

.swiper-pagination { bottom: 32px !important; }

.swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.35);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--amber);
    width: 28px;
    border-radius: 4px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 5;
    animation: bounce 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* ======= SERVICIOS ======= */
.services-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header-block {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-block .section-tag { justify-content: center; }
.section-header-block .section-tag::before { display: none; }

.section-header-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--navy);
}

.section-header-block p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.service-card.featured {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.service-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card-body {
    padding: 28px;
    color: var(--white);
}

.service-icon {
    width: 48px; height: 48px;
    background: var(--amber-dim);
    color: var(--amber);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--white);
}

.service-card-body p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

.services-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric-item { }

.metric-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.metric-val { color: var(--amber); }

.metric-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--amber), var(--amber-2));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.metric-fill.animated { width: var(--w); }

.service-cards-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-card {
    background: var(--white);
    border: 1px solid #e8ecf4;
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.mini-card:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 16px rgba(245,166,35,0.12);
    transform: translateY(-2px);
}

.mini-card i {
    width: 36px; height: 36px;
    background: var(--amber-dim);
    color: var(--amber);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mini-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.mini-card span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ======= SOBRE MI ======= */
.sobre-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.sobre-accent {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

.sobre-image-col { position: relative; }

.sobre-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(245,166,35,0.2);
}

.sobre-img-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.9);
}

.sobre-badge-float {
    position: absolute;
    bottom: 28px; right: 28px;
    background: var(--amber);
    color: var(--navy);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.sobre-badge-float i { font-size: 1.4rem; }

.sobre-text-col { color: var(--white); }

.sobre-text-col .section-tag { color: var(--amber); }
.sobre-text-col .section-tag::before { background: var(--amber); }

.sobre-text-col h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--white);
}

.sobre-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sobre-text-col p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.sobre-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25);
    color: var(--amber);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
}

/* ======= FAQ ======= */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.faq-side h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.faq-side p {
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.faq-img-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--off-white);
}

.faq-img-block img { width: 100%; height: 220px; object-fit: contain; background: var(--off-white); }

.faq-items { display: flex; flex-direction: column; }

.faq-item {
    border-bottom: 1px solid #eaeff8;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--navy);
    user-select: none;
}

.faq-icon {
    width: 32px; height: 32px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--amber);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
    padding-bottom: 20px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ======= CONTACTO ======= */
.contact-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    bottom: -300px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-info-col { color: var(--white); }

.contact-info-col h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info-col > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px; height: 48px;
    background: var(--amber-dim);
    color: var(--amber);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.contact-item span {
    color: rgba(255,255,255,0.85);
    font-size: 0.97rem;
}

/* Form */
.contact-form-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab4c8;
}

/* ======= FOOTER ======= */
.footer {
    background: #071a1a;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col > p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-social {
    display: flex; gap: 10px;
}

.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--amber);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}

.footer-col ul li a::before {
    content: '→';
    color: var(--amber);
    opacity: 0;
    transition: var(--transition);
    font-size: 0.75rem;
}

.footer-col ul li a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 4px;
}

.footer-col ul li a:hover::before { opacity: 1; }

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.newsletter input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter input:focus { border-color: var(--amber); }

.subscribe-btn {
    width: 44px; height: 44px;
    background: var(--amber);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.subscribe-btn:hover { background: var(--amber-2); transform: translateY(-2px); }

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--amber);
    transition: var(--transition);
}

.footer-contact a:hover { color: var(--amber-2); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { position: static; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 24px 80px;
        text-align: center;
    }

    .hero-text h1 { font-size: 2.2rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-img-wrap img { max-height: 260px; }

    .sobre-grid,
    .contact-layout,
    .faq-layout { grid-template-columns: 1fr; }

    .sobre-img-frame img { height: 320px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .contact-form-col { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; }
    .service-cards-mini { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
}
