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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.1;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
}

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

.logo {
    display: flex;
    align-items: baseline;
    font-family: 'Bebas Neue', sans-serif;
}

.logo-text {
    font-size: 2rem;
    font-weight: 400;
}

.logo-sub {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-left: 5px;
    color: #666;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: #000;
}

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

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #000;
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: #000;
    color: #FFF;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent 0, transparent 100px, rgba(255,255,255,0.02) 100px, rgba(255,255,255,0.02) 101px);
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    padding: 8px 16px;
    border: 1px solid #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 7rem;
    line-height: 0.9;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 40px;
    max-width: 400px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: #FFF;
    color: #000;
}

.btn-primary:hover {
    background: #E5E5E5;
}

.btn-secondary {
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF;
}

.btn-secondary:hover {
    background: #FFF;
    color: #000;
}

.btn-whatsapp {
    background: #25D366;
    color: #FFF;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-white {
    background: #FFF;
    color: #000;
}

.btn-white:hover {
    background: #E5E5E5;
}

.btn-outline {
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF;
}

.btn-outline:hover {
    background: #FFF;
    color: #000;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

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

.stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.stat-txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    padding: 8px 16px;
    border: 1px solid #E5E5E5;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
}

.services {
    padding: 100px 0;
    background: #FFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #F5F5F5;
    padding: 40px;
    display: block;
    transition: background 0.3s;
}

.service-card:hover {
    background: #000;
    color: #FFF;
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.service-card:hover .service-num {
    opacity: 0.6;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.service-card:hover p {
    color: #CCC;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about {
    padding: 100px 0;
    background: #F5F5F5;
}

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

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
}

.about-content .btn {
    margin-top: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #FFF;
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #FFF;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666;
}

.cta {
    padding: 80px 0;
    background: #000;
    color: #FFF;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: #999;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

.footer {
    background: #F5F5F5;
    padding: 60px 0 20px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand p {
    color: #666;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-col a {
    color: #666;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #000;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #000;
}

.page-hero {
    padding: 180px 0 80px;
    background: #000;
    color: #FFF;
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
}

.services-detail {
    padding: 80px 0;
    background: #FFF;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E5E5E5;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #E5E5E5;
}

.service-item-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-item-content > p {
    color: #666;
    margin-bottom: 20px;
}

.service-item-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-item-content li {
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-item-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #000;
}

.about-section {
    padding: 80px 0;
    background: #FFF;
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: #F5F5F5;
    padding: 30px;
    text-align: center;
}

.stat-box .stat-num {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-box .stat-txt {
    color: #666;
    font-size: 0.85rem;
}

.values {
    padding: 100px 0;
    background: #F5F5F5;
}

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

.value-card {
    background: #FFF;
    padding: 30px;
}

.value-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #E5E5E5;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
}

.features-section {
    padding: 80px 0;
    background: #FFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    padding: 30px;
    background: #F5F5F5;
}

.feature-box .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
}

.contact-section {
    padding: 80px 0;
    background: #FFF;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #F5F5F5;
    transition: background 0.3s;
}

.contact-method:hover {
    background: #E5E5E5;
}

.method-icon {
    font-size: 1.5rem;
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 15px;
}

.contact-form-wrapper {
    background: #F5F5F5;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #FFF;
    border: 1px solid #E5E5E5;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.btn-full {
    width: 100%;
}

.areas-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.areas-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-tag {
    padding: 12px 24px;
    background: #FFF;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .about-main,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #FFF;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .about-features,
    .features-grid,
    .values-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item-content ul {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}
