:root {
    --primary: #0b2e59;
    /* Dark deep blue */
    --secondary: #0088cc;
    /* bright blue */
    --accent: #ff9800;
    /* orange */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --text-main: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/MaterialIcons-Regular.woff2') format('woff2');
}

.material-icons-round {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', 'Roboto', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    line-height: 1.2;
}

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

/* === UTILS === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--secondary);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 136, 204, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
}

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

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

header nav {
    display: flex;
    gap: 12px;
}

header nav a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

header nav a:hover {
    background: rgba(0, 136, 204, 0.08);
    color: var(--secondary);
}

header nav .material-icons-round {
    font-size: 20px;
}

/* === SIDEBAR MENU === */
.menu-toggle,
.menu-close {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.menu-toggle .material-icons-round,
.menu-close .material-icons-round {
    font-size: 32px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* === BANNER === */
.banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1581578017426-ecd9f3e86a59?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    /* Offset for header */
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 46, 89, 0.85) 0%, rgba(0, 136, 204, 0.7) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-logo {
    height: 90px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1s ease;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
}

.banner h1 .text-highlight {
    color: #ffd166;
}

.banner h1 .subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 16px;
    opacity: 0.9;
}

.banner-actions {
    animation: fadeInUp 1s ease 0.4s both;
    margin-top: 10px;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* === BUTTONS === */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--whatsapp);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp.large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp svg,
.btn-whatsapp path,
.btn-whatsapp span,
.floating-whatsapp svg,
.floating-whatsapp path,
.floating-whatsapp span {
    pointer-events: none;
}

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

section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

/* === SOBRE === */
.section-sobre {
    background: var(--bg-light);
}

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

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--primary);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item .material-icons-round {
    color: var(--secondary);
    font-size: 28px;
}

.sobre-image .image-placeholder {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    height: 500px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.sobre-image .image-placeholder::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(30deg);
    top: -50%;
    left: -50%;
}

/* === SERVIÇOS === */
.section-servicos {
    background: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.servico-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

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

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 136, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.servico-card:hover .card-icon-wrapper {
    background: var(--secondary);
}

.servico-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.servico-card:hover img {
    filter: brightness(0) invert(1);
}

.servico-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.servico-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === VÍDEO === */
.section-video {
    background: var(--primary);
    color: white;
}

.section-video h2 {
    color: white;
}

.section-video .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.video-wrapper {
    display: block;
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/9;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.video-play-btn .material-icons-round {
    font-size: 40px;
    color: var(--primary);
    margin-left: 5px;
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.video-wrapper:hover .video-play-btn {
    background: white;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
}

/* === ATENDIMENTO === */
.section-atendimento {
    background: var(--bg-light);
}

.atendimento-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.atendimento-info p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.atendimento-map {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-pin {
    font-size: 60px;
    color: var(--secondary);
    position: relative;
    z-index: 2;
    animation: bounce 2s infinite;
}

.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
    animation: pulse-ring 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* === CONTATO === */
.section-contato {
    background: white;
}

.contact-card {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 50px 40px;
    background: var(--bg-light);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon .material-icons-round {
    font-size: 40px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* === FOOTER === */
.main-footer {
    background: #061830;
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact .material-icons-round {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    text-align: center;
    background: #030d1c;
}

.footer-bottom .small-text {
    font-size: 0.85rem;
    margin-top: 8px;
    color: #94a3b8;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--whatsapp);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {

    .sobre-container,
    .atendimento-container {
        grid-template-columns: 1fr;
    }

    .sobre-image .image-placeholder {
        height: 300px;
    }

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

    .banner h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 24px;
    }

    .header-logo {
        height: 35px;
        margin-bottom: 0;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 24px 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1003;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
    }

    header nav.active {
        right: 0;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 24px;
    }

    header nav a {
        font-size: 1.1rem;
        padding: 18px 24px;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid var(--border);
        color: var(--primary);
        width: 100%;
    }

    header nav a:first-of-type {
        border-top: 1px solid var(--border);
    }

    header nav .material-icons-round {
        font-size: 24px;
    }

    .banner {
        padding-top: 100px;
    }

    .banner h1 {
        font-size: 2.2rem;
    }

    .banner h1 .subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .btn-whatsapp {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }
}