/* ===== RESET E VARIÁVEIS ===== */
:root {
    --primary: #1a2b5c;
    --primary-dark: #0f1a3d;
    --primary-light: #e8ecf5;
    --accent: #2ba89d;
    --accent-dark: #1f8579;
    --accent-light: #e6f6f4;
    --text-dark: #1a2b5c;
    --text-medium: #4a5568;
    --text-light: #8b95a8;
    --bg-light: #f7f9fb;
    --white: #ffffff;
    --border: #e5e9ed;
    --shadow: 0 4px 24px rgba(26, 43, 92, 0.08);
    --shadow-hover: 0 12px 40px rgba(26, 43, 92, 0.16);
    --radius: 12px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.2; }

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(43, 168, 157, 0.4); }
    50%      { box-shadow: 0 0 0 14px rgba(43, 168, 157, 0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-phone {
    color: var(--white);
    font-weight: 600;
    transition: opacity 0.3s;
}

.top-phone:hover { opacity: 0.8; }

/* ===== HEADER ===== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 233, 237, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s var(--ease);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

/* ===== LOGO ===== */
.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    gap: 4px;
    text-decoration: none;
    position: relative;
}

.logo-wordmark {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    position: relative;
}

.logo-wordmark .life {
    color: var(--primary);
    transition: color 0.4s var(--ease);
}

.logo-wordmark .care {
    background: linear-gradient(
        90deg,
        var(--accent) 0%,
        #34d4c6 25%,
        var(--accent) 50%,
        #34d4c6 75%,
        var(--accent) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.logo:hover .logo-wordmark .life {
    color: var(--accent);
}

.logo-tagline {
    display: block;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-left: 2px;
    transition: color 0.3s var(--ease);
}

.logo:hover .logo-tagline {
    color: var(--accent);
}

/* Footer logo */
.logo-footer .logo-wordmark {
    font-size: 30px;
}

.logo-footer .logo-wordmark .life {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.logo-footer .logo-tagline {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== NAV ===== */
.nav ul {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s var(--ease);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s var(--ease);
    border-radius: 2px;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease), height 0.6s var(--ease);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 43, 92, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    animation: pulse 2.5s infinite;
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    animation: none;
    transform: translateY(-3px);
}

.btn-header {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 50px;
}

.btn-full {
    width: 100%;
    padding: 16px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, var(--primary-light) 0%, var(--white) 40%, var(--accent-light) 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(43, 168, 157, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 43, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s var(--ease) both;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-light), rgba(43, 168, 157, 0.15));
    color: var(--accent-dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    border: 1px solid rgba(43, 168, 157, 0.2);
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-dark);
    line-height: 1.1;
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 0.8s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s var(--ease) 0.3s both;
}

.hero-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 43, 92, 0.2);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border: 5px solid var(--white);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(26, 43, 92, 0.25);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: 15px;
    background-color: var(--white);
    padding: 18px 26px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 43, 92, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    animation: fadeInUp 0.8s var(--ease) 1s both, float 4s ease-in-out 2s infinite;
}

.hero-badge-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-badge-info { display: flex; flex-direction: column; }
.hero-badge-info strong { color: var(--text-dark); font-size: 15px; margin-bottom: 2px; }
.hero-badge-info span { color: var(--text-light); font-size: 12px; }

/* ===== SEÇÕES GENÉRICAS ===== */
.section-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
}

.subtitle::before,
.subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--accent);
    opacity: 0.4;
}

.subtitle::before { right: calc(100% + 12px); }
.subtitle::after  { left: calc(100% + 12px); }

.section-title h2,
.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

/* ===== SERVIÇOS ===== */
.services {
    padding: 110px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    padding: 44px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.5s var(--ease);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(43, 168, 157, 0.15) 100%);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.5s var(--ease);
}

.service-icon svg { width: 34px; height: 34px; }

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 { font-size: 19px; margin-bottom: 12px; font-weight: 700; }
.service-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

.service-card--highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    color: var(--white);
    position: relative;
}

.service-card--highlight h3 { color: var(--white); }
.service-card--highlight p { color: rgba(255, 255, 255, 0.8); }

.service-card--highlight .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card--highlight:hover .service-icon {
    background: var(--white);
    color: var(--primary);
}

.service-card--highlight::before {
    background: linear-gradient(90deg, var(--accent), #34d4c6);
}

.service-card--highlight::after {
    content: 'NOVO';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #162350 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 168, 157, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 800;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(160deg, var(--primary-light) 0%, var(--white) 50%, var(--accent-light) 100%);
    padding: 90px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(43, 168, 157, 0.06) 0%, transparent 60%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: 50px;
    margin-bottom: 16px;
    font-weight: 800;
    animation: fadeInUp 0.8s var(--ease) both;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.page-header .subtitle {
    animation: fadeInUp 0.8s var(--ease) both;
}

/* ===== ABOUT ===== */
.about { padding: 110px 0; }

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

.about-image { position: relative; }

.about-image-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 43, 92, 0.2);
    transition: transform 0.6s var(--ease);
}

.about-image-box:hover { transform: scale(1.02); }

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.about-image-box::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 220px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    z-index: 0;
}

.about-text h2 { font-size: 40px; margin-bottom: 28px; font-weight: 800; }
.about-text p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.about-text strong { color: var(--text-dark); }

/* ===== VALORES ===== */
.values {
    padding: 110px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.5s var(--ease);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.value-icon svg { width: 38px; height: 38px; }
.value-card h3 { font-size: 22px; margin-bottom: 14px; font-weight: 700; }
.value-card p { color: var(--text-light); font-size: 15px; line-height: 1.6; }

/* ===== STATS ===== */
.stats {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #162350 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 168, 157, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat {
    padding: 20px;
    transition: transform 0.4s var(--ease);
}

.stat:hover { transform: scale(1.08); }

.stat-number {
    display: block;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== CONTATO ===== */
.contact { padding: 110px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
}

.contact-info h2 { font-size: 34px; margin-bottom: 16px; font-weight: 800; }
.contact-info > p { color: var(--text-light); margin-bottom: 40px; line-height: 1.7; }

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    transition: transform 0.3s var(--ease);
}

.info-item:hover { transform: translateX(6px); }

.info-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-light), rgba(43, 168, 157, 0.15));
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.info-icon svg { width: 22px; height: 22px; }
.info-item strong { display: block; color: var(--text-dark); font-size: 16px; margin-bottom: 4px; font-weight: 700; }
.info-item a, .info-item span { color: var(--text-medium); font-size: 15px; }
.info-item a:hover { color: var(--accent); }

/* ===== FORMULÁRIO ===== */
.contact-form {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow 0.5s var(--ease);
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
}

.contact-form h3 { font-size: 24px; margin-bottom: 30px; font-weight: 700; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(43, 168, 157, 0.1);
}

.form-group textarea { resize: vertical; font-family: inherit; }

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0a1229 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
}

.logo-footer { margin-bottom: 20px; }
.footer-col p { font-size: 14px; line-height: 1.9; }

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 14px; font-size: 14px; line-height: 1.7; }

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== FROTA / ESTRUTURA ===== */
.fleet {
    padding: 110px 0;
    background-color: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.fleet-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.6s var(--ease);
    aspect-ratio: 4 / 3;
    background-color: var(--bg-light);
}

.fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 43, 92, 0.22);
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.fleet-item:hover img {
    transform: scale(1.06);
}

.fleet-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 26, 61, 0.9) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s var(--ease);
}

.fleet-item:hover .fleet-caption {
    transform: translateY(0);
    opacity: 1;
}

.fleet-caption strong { display: block; font-size: 18px; margin-bottom: 4px; font-weight: 700; }
.fleet-caption span { font-size: 14px; opacity: 0.85; }

/* ===== EQUIPE ===== */
.team {
    padding: 110px 0;
    background-color: var(--bg-light);
}

.team-banner {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background-color: var(--white);
    border: 1px solid var(--border);
    transition: all 0.6s var(--ease);
}

.team-banner:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 60px rgba(26, 43, 92, 0.2);
}

.team-banner img { width: 100%; height: auto; display: block; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background-color: var(--white);
    padding: 44px 28px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
}

.team-card:hover::after { transform: scaleX(1); }

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 6px 16px rgba(26, 43, 92, 0.1);
    transition: all 0.5s var(--ease);
}

.team-card:hover .team-photo {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.team-photo svg { width: 44px; height: 44px; }
.team-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-dark); font-weight: 700; }
.team-card p { color: var(--text-light); font-size: 13px; line-height: 1.6; }

/* ===== TELECONSULTA ===== */
.page-header--tele {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 50%, #162350 100%);
    color: var(--white);
    padding: 100px 0 90px;
}

.page-header--tele h1 {
    color: var(--white);
    font-size: 54px;
}

.page-header--tele p {
    color: rgba(255, 255, 255, 0.8);
}

.page-header--tele .subtitle {
    color: var(--accent);
}

.tele-steps { padding: 110px 0; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step-card {
    background-color: var(--white);
    padding: 44px 30px 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-light), rgba(43, 168, 157, 0.15));
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s var(--ease);
}

.step-icon svg { width: 28px; height: 28px; }

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    transform: scale(1.1);
}

.step-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.step-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

.tele-benefits {
    padding: 110px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-light), rgba(43, 168, 157, 0.15));
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.benefit-icon svg { width: 24px; height: 24px; }
.benefit-item strong { display: block; color: var(--text-dark); font-size: 16px; margin-bottom: 4px; font-weight: 700; }
.benefit-item p { color: var(--text-light); font-size: 14px; line-height: 1.5; margin: 0; }

.tele-booking {
    padding: 110px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: flex-start;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
}

.booking-info > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 36px;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.booking-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.booking-highlight svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: #25D366;
    color: var(--white);
    transition: all 0.4s var(--ease);
    text-decoration: none;
}

.btn-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-whatsapp:hover {
    background: #1fba59;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

.booking-form {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.booking-form h3 {
    font-size: 24px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.form-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .hero-content, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero h1 { font-size: 38px; }
    .section-title h2, .page-header h1, .about-text h2 { font-size: 32px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .subtitle::before, .subtitle::after { display: none; }
    .booking-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 700px) {
    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .header-content { flex-wrap: wrap; gap: 16px; }
    .nav ul { gap: 24px; }
    .btn-header { display: none; }

    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    .services, .about, .values, .contact, .fleet, .team { padding: 70px 0; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta h2 { font-size: 24px; }
    .contact-form, .booking-form { padding: 35px 25px; }
    .stat-number { font-size: 44px; }
    .fleet-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-header--tele h1 { font-size: 36px; }
    .benefits-grid { grid-template-columns: 1fr; }

    .logo-wordmark { font-size: 28px; }
}
