@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'segoe ui', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #102b5e;
    --primary-dark: #0a1c3f;
    --secondary-color: #ffffff; 
    --accent-color: #e0b22d;
    --accent: #e0b22d;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --gray-light: #f8f9fa;
    --bg-light: #f0f2f5;
    --white: #ffffff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Inter', sans-serif;
    --font-titulo: 'Montserrat', sans-serif;
    --font-corpo: 'Inter', sans-serif;
}

body {
    font-family: var(--font-corpo);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

header {
    background-color: rgba(16, 43, 94, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

nav ul li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    margin-top: 20px;
}

.contact-details li {
    margin-bottom: 15px;
    font-weight: 500;
}

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

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline-color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-list, .contact-list {
    list-style: none;
}

.footer-links-list li, .contact-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
}

.contact-list i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 26, 141, 0.05); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    overflow: hidden;
}

.icon-service {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 26, 141, 0.1);
    border-color: var(--primary-color);
}

.service-card:hover .icon-service {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-titulo);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex; 
    }

    .nav-links {
        position: absolute;
        right: -100%; 
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        top: 100%;
        z-index: 999;
    }

    .nav-links li a {
        color: var(--primary-color);
    }

    .nav-links.active {
        right: 0; 
    }

    .nav-links li {
        margin: 20px 0;
    }

    #home h1 {
        font-size: 1.8rem;
    }

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 5%;
    width: 100%;
}


.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.cta-button {
    background-color: var(--accent-color);
    color: #1a2a6c;
    padding: 16px 32px;
    border: none;
    border-radius: 50px; 
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(224, 178, 45, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #cca229;
    box-shadow: 0 6px 20px rgba(224, 178, 45, 0.4);
}

#sobre {
    background-color: var(--white);
    position: relative;
}

.sobre-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.badge-sobre {
    background-color: rgba(0, 26, 141, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.sobre-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: -40px;
}

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

.sobre-bio h3, .sobre-diferenciais h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sobre-bio h3::after, .sobre-diferenciais h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.sobre-bio p {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

.bio-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--heading-font);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--gray-light);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.diferencial-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.diferencial-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .sobre-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Utilitários e Ajustes Específicos */
.mt-30 {
    margin-top: 30px;
}

section {
    padding: 80px 0;
    position: relative;
}

.services-grid {
    width: 100%;
}

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

.hero-premium {
    background-color: var(--primary-color);
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-family: var(--font-titulo);
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 0.85;
    margin-bottom: 20px;
}

.hero-content h1 span {
    font-weight: 800;
    display: block;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

.top-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.btn-amarelo {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-amarelo:hover {
    background-color: #cca229;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

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

.shape-bg {
    position: absolute;
    width: 110%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    z-index: 1;
}

.daiana-img {
    position: relative;
    z-index: 2;
    max-width: 90%;
    height: auto;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-premium {
        height: auto;
        padding: 120px 0 60px;
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
}