/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8A5C;
    --secondary-color: #1a1a1a;
    --secondary-dark: #0d0d0d;
    --secondary-light: #2a2a2a;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #cccccc;
    --success: #25D366;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xl: 3.5rem;
    --font-size-lg: 2.5rem;
    --font-size-md: 1.75rem;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

/* ==================== UTILITIES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.highlight {
    color: var(--primary-color);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ==================== HEADER / NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link:hover {
    width: 100%;
    color: var(--primary-color);
}

.nav__link--cta {
    background-color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-sm);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}

.hero__content {
    color: var(--white);
}

.hero__subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(26, 26, 26, 0.3) 100%);
}

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

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

/* ==================== SECTION HEADER ==================== */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section__subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ==================== SERVIÇOS SECTION ==================== */
.servicos {
    background-color: var(--gray-light);
}

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

.servico__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.servico__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary-color);
}

.servico__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.servico__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.servico__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== DIFERENCIAIS SECTION ==================== */
.diferenciais__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diferencial__card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.diferencial__card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.diferencial__number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.diferencial__title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.diferencial__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== COMO FUNCIONA SECTION ==================== */
.como-funciona {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.como-funciona .section__title,
.como-funciona .section__subtitle {
    color: var(--white);
}

.como-funciona .section__subtitle {
    color: var(--primary-color);
}

.processo__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.processo__step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.processo__icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.processo__step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.processo__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
}

.processo__description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.processo__arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.processo__cta {
    text-align: center;
}

/* ==================== LOCALIZAÇÃO SECTION ==================== */
.localizacao__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.localizacao__image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.localizacao__image img {
    width: 100%;
    height: auto;
    display: block;
}

.localizacao__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.localizacao__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.localizacao__item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.localizacao__item h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.localizacao__item p,
.localizacao__item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.localizacao__item a:hover {
    color: var(--primary-color);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 400px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: 1.125rem;
    color: var(--white);
    max-width: 300px;
}

/* ==================== CONTATO SECTION ==================== */
.contato {
    background-color: var(--gray-light);
}

.contato__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contato__card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid transparent;
}

.contato__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contato__card:hover .contato__icon {
    transform: scale(1.1);
}

.contato__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contato__icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
}

.contato__card:hover .contato__icon--whatsapp {
    border-top-color: #25D366;
}

.contato__icon--phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.contato__card:hover .contato__icon--phone {
    border-top-color: var(--primary-color);
}

.contato__icon--email {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.contato__card:hover .contato__icon--email {
    border-top-color: var(--secondary-color);
}

.contato__title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contato__description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contato__action {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contato__card:hover .contato__action i {
    transform: translateX(5px);
}

.contato__action i {
    transition: var(--transition);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer__list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__list--contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==================== ANIMATIONS ==================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fadeInRight"] {
    transform: translateX(30px);
}

[data-animate="fadeInRight"].animated {
    transform: translateX(0);
}

[data-animate="fadeInLeft"] {
    transform: translateX(-30px);
}

[data-animate="fadeInLeft"].animated {
    transform: translateX(0);
}

[data-animate="fadeIn"] {
    transform: none;
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 968px) {
    :root {
        --font-size-xl: 2.5rem;
        --font-size-lg: 2rem;
        --font-size-md: 1.5rem;
        --section-padding: 3rem 0;
    }
    
    .hero__container,
    .localizacao__content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .processo__arrow {
        display: none;
    }
    
    .processo__grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .processo__step {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--secondary-color);
        padding: 4rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .servicos__grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais__grid {
        grid-template-columns: 1fr;
    }
    
    .contato__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --font-size-xl: 2rem;
        --font-size-lg: 1.75rem;
        --font-size-md: 1.25rem;
    }
    
    .hero__badges {
        flex-direction: column;
    }
    
    .badge {
        width: 100%;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
}