/* Taruma Marketing - Tema Profissional */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #0ea5e9;
    --accent-dark: #0284c7;
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    --text-color: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 2px 10px rgba(14, 165, 233, 0.08);
    --shadow-lg: 0 10px 40px rgba(14, 165, 233, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(2, 132, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
}

/* Header profissional: barra superior + área principal */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-top {
    background: var(--primary-color);
    padding: 0.5rem 0;
}

.header-top-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-top-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.header-top-link:hover {
    color: #fff;
}

.header-top-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-top-icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.header-top-icon-location {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.75)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-top-city {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    font-weight: 500;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.header-main {
    background: #fff;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.logo-fallback {
    display: none;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo-wrap .logo-img[style*="display: none"] ~ .logo-fallback,
.logo-fallback.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
    background: var(--accent-dark);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero com slider */
.hero-slider-section {
    margin-top: 120px;
    position: relative;
    min-height: 0;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-image: var(--hero-bg), linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 85vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.hero-slide-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.82) 50%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 0;
}

.hero-slide-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-prev { left: 20px; }
.hero-slider-next { right: 20px; }

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(14, 165, 233, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev span,
.hero-slider-next span {
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-left: 4px;
    transform: rotate(-45deg);
}

.hero-slider-next span {
    margin-left: -4px;
    transform: rotate(135deg);
}

.hero-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.hero-slider-dot:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.3);
}

/* Bloco de apresentação abaixo do hero */
.hero-presentation {
    background: var(--bg-white);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.hero-presentation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-presentation-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hero-presentation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.hero-presentation-img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-presentation-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-presentation-card:hover .hero-presentation-img-wrap img {
    transform: scale(1.04);
}

.hero-presentation-card-content {
    padding: 1.5rem 1.25rem;
}

.hero-presentation-card-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-presentation-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

.hero {
    color: white;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin-bottom: 2.5rem;
    opacity: 0.92;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: var(--bg-white);
}

#sobre,
#servicos,
#contato {
    scroll-margin-top: 130px;
}

.page-header {
    scroll-margin-top: 120px;
}

.hero + .section {
    padding-top: 80px;
    margin-top: 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.25;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 1.25rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.info-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.info-card h4 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.25);
}

.service-icon,
.service-icon-institutional {
    margin-bottom: 1.25rem;
    display: block;
}

.service-icon-institutional {
    text-align: center;
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.service-icon-institutional .service-icon-wrap {
    margin-bottom: 1.25rem;
}

.service-icon-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-icon-svg-promocao {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
}

.service-icon-svg-publicidade {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 21 9-9'/%3E%3Cpath d='M12 12 3 9 21 3l-9 12-3-3Z'/%3E%3C/svg%3E");
}

.service-icon-svg-agenciamento {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E");
}

.service-icon-svg-intermediacao {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3Cpath d='M15 12h6'/%3E%3Cpath d='M18 9v6'/%3E%3C/svg%3E");
}

.service-num {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.05em;
    padding: 0.35rem 0;
    border-bottom: 2px solid var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.75rem 1.75rem 1.75rem 4rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.75rem;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-item-icon-endereco::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-item-icon-telefone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-item-icon-email::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.contact-item-icon-empresa::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E");
}

.contact-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
    border-color: rgba(14, 165, 233, 0.2);
}

.contact-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-dark);
    font-weight: 800;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
}

.page-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Missão, Visão e Valores */
.section-mvv {
    padding-top: 4rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mvv-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.mvv-icon-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mvv-icon {
    width: 56px;
    height: 56px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.mvv-icon-missao {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3C/svg%3E");
}

.mvv-icon-visao {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.mvv-icon-valores {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2z'/%3E%3C/svg%3E");
}

.mvv-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mvv-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-intro {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.85;
}

.team-member-card-institutional {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    text-align: left;
    align-items: start;
}

.team-member-card-institutional .team-member-avatar {
    margin: 0;
}

.team-member-card-institutional .team-member-details {
    margin-top: 0.75rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.team-member-card {
    position: relative;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 16px 16px 0 0;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.25rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    transition: var(--transition);
}

.team-member-card:hover .avatar-placeholder {
    transform: scale(1.05);
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.team-member-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-details {
    text-align: left;
    margin-top: 1.25rem;
}

.team-member-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-note {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}

.team-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 800;
}

.team-note p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.company-verification-info {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 12px;
    margin-top: 1.25rem;
    border-left: 4px solid var(--accent-color);
}

.company-verification-info p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.legal-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.legal-section h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-section p,
.legal-section li {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3.5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.25;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #7dd3fc;
    font-weight: 800;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.98rem;
}

.footer-section ul li a:hover {
    color: #7dd3fc;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #7dd3fc;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 992px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    .header-main {
        padding: 0.75rem 0;
    }
    .header-content {
        gap: 1rem;
    }
    .logo-text {
        font-size: 1.15rem;
    }
    .header-cta {
        display: none;
    }
    .nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    .hero-slider-section {
        margin-top: 72px;
    }
    .hero-slide {
        padding: 100px 0 80px;
        min-height: 75vh;
    }
    .hero-slider-prev { left: 10px; }
    .hero-slider-next { right: 10px; }
    .hero-slider-prev,
    .hero-slider-next {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .hero-presentation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-presentation {
        padding: 2.5rem 0;
    }
    .section {
        padding: 70px 0;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-info {
        grid-template-columns: 1fr;
    }
    .contact-item {
        padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    }
    .contact-item::before {
        left: 1rem;
        top: 1.5rem;
        width: 24px;
        height: 24px;
    }
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    .team-member-card-institutional {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: none;
    }
    .team-member-card-institutional .team-member-avatar {
        margin: 0 auto;
    }
    .team-member-card-institutional .team-member-details {
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .page-header {
        padding: 100px 0 60px;
    }
    .portfolio-filters {
        gap: 0.5rem;
    }
    .portfolio-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding: 90px 0 70px;
        min-height: 70vh;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .btn {
        min-height: 48px;
        padding: 12px 24px;
    }
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.6;
        word-break: break-word;
    }
    .page-header {
        padding: 90px 0 50px;
    }
    .page-title {
        font-size: 1.75rem;
    }
    .legal-section {
        padding: 1.25rem;
    }
    .company-verification-info {
        padding: 1.25rem;
    }
    .team-note {
        padding: 1.5rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding: 90px 0 70px;
        min-height: 70vh;
    }
    .section {
        padding: 60px 0;
    }
    .contact-form-wrapper {
        padding: 1.75rem;
    }
}

/* Mobile menu - injected by script or use below in separate media query */
@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 2rem 2rem;
        z-index: 999;
    }
    .nav.active .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .nav.active .nav-link {
        font-size: 1.35rem;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--accent-color);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--accent-color);
    }
}

/* Projetos / Portfólio institucional */
.page-header-institutional .page-subtitle {
    font-weight: 400;
    opacity: 0.9;
}

.projetos-section {
    padding-top: 2.5rem;
}

.projetos-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.portfolio-filter-btn {
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.portfolio-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card-image {
    position: relative;
    aspect-ratio: 800/520;
    overflow: hidden;
    background: var(--bg-light);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.02);
}

.portfolio-card-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.65rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 2px;
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-card-overlay:hover {
    background: rgba(15, 23, 42, 0.08);
}

.portfolio-card-content {
    padding: 1.25rem;
}

.portfolio-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    line-height: 1.35;
}

.portfolio-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
}

.projetos-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.projetos-cta p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

/* Modal projetos */
.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.portfolio-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.portfolio-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.portfolio-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.98);
    transition: transform 0.25s ease;
}

.portfolio-modal.is-open .portfolio-modal-content {
    transform: scale(1);
}

.portfolio-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.portfolio-modal-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.portfolio-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.portfolio-modal-image-wrap {
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-light);
}

.portfolio-modal-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-modal-category {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.3rem 0.65rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 2px;
}

.portfolio-modal-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.portfolio-modal-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .portfolio-modal-body {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
