/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 60px;
}

.logo img {
    height: 63px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.2s ease;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.625);
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--white);
}

.hero-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0.9;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Section Styles */
section {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sobre .section-title {
    color: var(--black);
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.sobre .section-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

/* Sobre Section */
.sobre {
    background: #f8f8f8;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.sobre-text {
    padding-right: 40px;
}

.sobre-text p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.sobre-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sobre-image {
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sobre-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sobre-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

/* Catálogo Section */
.catalogo {
    background: var(--black);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalogo-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalogo-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.catalogo-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: var(--gray-900);
}

.catalogo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogo-item:hover .catalogo-image img {
    transform: scale(1.05);
}

.catalogo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalogo-overlay .btn {
    text-decoration: none;
    display: inline-block;
}

.catalogo-item:hover .catalogo-overlay {
    opacity: 1;
}

.catalogo-info {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.catalogo-info h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.catalogo-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

/* Conserto Section */
.conserto {
    background: #f8f8f8;
    padding: 140px 0;
    color: var(--black);
}

.conserto .section-title {
    color: var(--black);
}

.conserto .section-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

.conserto-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.conserto-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.conserto-service-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.conserto-service-item:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conserto-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
}

.conserto-icon svg {
    width: 20px;
    height: 20px;
}

.conserto-icon svg path {
    stroke: var(--black) !important;
}

.conserto-service-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.conserto-service-item p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.conserto-cta {
    text-align: center;
}

.conserto-cta .btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.conserto-cta .btn-primary:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.9);
}

/* Contato Section */
.contato {
    background: var(--black);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contato-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contato-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    flex-shrink: 0;
}

.contato-icon svg {
    width: 20px;
    height: 20px;
}

.contato-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.contato-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contato-form input,
.contato-form textarea {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--white);
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contato-map {
    margin-top: 3rem;
    width: 100%;
    min-height: 350px;
    flex: 1;
}

.contato-map .map-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.contato-map iframe:hover {
    opacity: 0.9;
}

.contato-whatsapp {
    text-align: center;
    margin-top: 0;
    align-self: start;
}

.contato-whatsapp h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.contato-whatsapp > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.whatsapp-options .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.whatsapp-options .btn svg {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .header .container {
        padding: 1.25rem 40px;
    }

    .logo img {
        height: 53px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .catalogo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .conserto .conserto-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .header .container {
        padding: 1rem 30px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 3rem 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        padding: 0 30px;
        text-align: center;
        width: 100%;
    }
    
    .hero-label,
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sobre-text {
        padding-right: 0;
    }

    .sobre-images {
        grid-template-columns: 1fr;
    }

    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .conserto .conserto-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .conserto-service-item {
        padding: 1.5rem;
    }

    .conserto-content {
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-controls {
        padding: 0 20px;
    }

    .hero-prev,
    .hero-next {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    section {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header .container {
        padding: 0.75rem 20px;
    }

    .logo img {
        height: 42px;
    }

    .nav {
        top: 60px;
    }

    .hero {
        min-height: 500px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }
    
    .hero-label,
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .sobre-content,
    .contato-content {
        gap: 30px;
    }

    .sobre-images {
        gap: 15px;
    }

    .sobre-image img {
        height: 250px;
    }

    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .catalogo-image {
        height: 300px;
    }

    .conserto .conserto-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .conserto-service-item {
        padding: 1.25rem;
        min-width: 0;
    }

    .conserto-service-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .conserto-service-item p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .conserto-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 1rem;
    }

    .conserto-icon svg {
        width: 18px;
        height: 18px;
    }

    .conserto-content {
        padding: 0;
        max-width: 100%;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 12px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .footer-content {
        gap: 2rem;
    }
}


.btn-large {
    padding: 16px 48px;
    font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}
