 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Manrope', -apple-system, sans-serif;
     background-color: #000000;
     color: #e0e0e0;
     line-height: 1.4;
     -webkit-font-smoothing: antialiased;
     letter-spacing: -0.2px;
     overflow-x: hidden;
 }

 .container {
     max-width: 1320px;
     margin: 0 auto;
     padding: 0 2rem;
     width: 100%;
 }

 .nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(0, 0, 0, 0.85);
     backdrop-filter: blur(30px);
     -webkit-backdrop-filter: blur(30px);
     border-bottom: 1px solid rgba(230, 184, 50, 0.18);
     padding: 1rem 0;
     transition: all 0.3s ease;
 }

 .nav__inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     max-width: 1320px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .nav__logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
 }

 .nav__logo img {
     height: 48px;
     width: auto;
 }

 .nav__links {
     display: flex;
     gap: 2.5rem;
     align-items: center;
 }

 .nav__link {
     color: #999;
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     transition: all 0.3s;
     letter-spacing: 0.3px;
     position: relative;
     padding-bottom: 4px;
 }

 .nav__link--active {
     color: #F1C300;
 }

 .nav__link--active::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 100%;
     height: 2px;
     background: #F1C300;
     border-radius: 2px;
 }

 .nav__link:hover {
     color: #F1C300;
 }

 .nav__cta {
     background: #F1C300;
     color: #000;
     padding: 0.6rem 1.6rem;
     border-radius: 50px;
     font-weight: 700;
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.3s;
     letter-spacing: 0.3px;
     box-shadow: 0 4px 20px rgba(230, 184, 50, 0.3);
 }

 .nav__cta:hover {
     background: #f5d742;
     box-shadow: 0 8px 28px rgba(245, 215, 66, 0.5);
     transform: translateY(-1px);
 }

 .nav__mobile-toggle {
     display: none;
     background: none;
     border: none;
     color: #F1C300;
     font-size: 1.8rem;
     cursor: pointer;
 }

 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 5rem;
     position: relative;
     overflow: hidden;
     background: radial-gradient(ellipse 80% 60% at 50% 30%, #1a1408 0%, #000000 70%);
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -40%;
     right: -20%;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(230, 184, 50, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

 .hero__grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .hero__content {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .hero__badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(230, 184, 50, 0.08);
     border: 1px solid rgba(230, 184, 50, 0.3);
     border-radius: 50px;
     padding: 0.5rem 1.2rem;
     font-size: 0.85rem;
     color: #F1C300;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     width: fit-content;
     backdrop-filter: blur(10px);
 }

 .hero__title {
     font-size: clamp(3rem, 6.5vw, 5.5rem);
     font-weight: 800;
     line-height: 1.05;
     letter-spacing: -2px;
     color: #ffffff;
 }

 .hero__title span {
     background: linear-gradient(135deg, #f7d94e 0%, #F1C300 40%, #c49b1a 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero__slogan {
     font-size: 1.3rem;
     color: #cccccc;
     font-weight: 400;
     border-left: 3px solid #F1C300;
     padding-left: 1.2rem;
     letter-spacing: 0.2px;
 }

 .hero__buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     margin-top: 0.5rem;
 }

 .btn {
     padding: 0.9rem 2rem;
     border-radius: 50px;
     font-weight: 700;
     font-size: 0.95rem;
     text-decoration: none;
     letter-spacing: 0.3px;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     cursor: pointer;
     border: none;
     font-family: 'Manrope', sans-serif;
 }

 .btn--primary {
     background: #F1C300;
     color: #000;
     box-shadow: 0 8px 30px rgba(230, 184, 50, 0.35);
 }

 .btn--primary:hover {
     background: #f5d742;
     box-shadow: 0 14px 38px rgba(245, 215, 66, 0.5);
     transform: translateY(-2px);
 }

 .btn--outline {
     background: transparent;
     color: #F1C300;
     border: 1.5px solid #F1C300;
 }

 .btn--outline:hover {
     background: rgba(230, 184, 50, 0.1);
     border-color: #f5d742;
     color: #f5d742;
 }

 .hero__image {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .hero__image-placeholder {
     width: 100%;
     max-width: 500px;
     aspect-ratio: 1/1;
     border-radius: 50%;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     filter: drop-shadow(0 0 80px rgba(230, 184, 50, 0.25));
     animation: float 6s ease-in-out infinite;
     user-select: none;
     background: radial-gradient(circle at center, rgba(230, 184, 50, 0.15) 0%, transparent 65%);
 }

 .hero__image-placeholder img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .services {
     padding: 6rem 0;
     background: #030303;
 }

 .section__header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section__label {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: #F1C300;
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .section__title {
     font-size: clamp(2.2rem, 4vw, 3.2rem);
     font-weight: 700;
     letter-spacing: -1px;
     color: #fff;
 }

 .services__grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 1.5rem;
 }

 .service-card {
     background: #0a0a0a;
     border: 1px solid #F1C300;
     border-radius: 24px;
     padding: 2.5rem 2rem;
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
     position: relative;
     overflow: hidden;
     cursor: default;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, transparent, #F1C300, transparent);
     transform: scaleX(0);
     transition: transform 0.5s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     border-color: #F1C300;
     background: #0d0d0d;
     transform: translateY(-8px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(230, 184, 50, 0.08);
 }

 .service-card__icon {
     font-size: 2.8rem;
     margin-bottom: 1.5rem;
     display: block;
     filter: grayscale(0.3);
     transition: all 0.3s;
 }

 .service-card:hover .service-card__icon {
     filter: grayscale(0);
     transform: scale(1.1);
 }

 .service-card__title {
     font-size: 1.4rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 0.8rem;
     letter-spacing: -0.3px;
 }

 .service-card__desc {
     font-size: 0.95rem;
     color: #F1C300;
     line-height: 1.6;
     font-weight: 400;
 }

 .units {
     padding: 6rem 0;
     background: #000;
 }

 .units__grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     gap: 2rem;
 }

 .unit-card {
     background: #080808;
     border: 1px solid #F1C300;
     border-radius: 28px;
     padding: 2.5rem;
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
     position: relative;
 }

 .unit-card:hover {
     border-color: #F1C300;
     box-shadow: 0 0 50px rgba(230, 184, 50, 0.1);
     transform: translateY(-5px);
 }

 .unit-card__city {
     font-size: 1.8rem;
     font-weight: 700;
     color: #F1C300;
     margin-bottom: 1rem;
     letter-spacing: -0.5px;
 }

 .unit-card__address {
     font-size: 0.95rem;
     color: #dddddd;
     margin-bottom: 0.5rem;
     font-weight: 400;
 }

 .unit-card__cep {
     font-size: 0.8rem;
     color: #a1a1a1;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .unit-card__contact {
     display: flex;
     flex-direction: column;
     gap: 0.4rem;
     margin-bottom: 2rem;
     font-size: 0.9rem;
     color: #cacaca;
 }

 .unit-card__actions {
     display: flex;
     flex-wrap: wrap;
     gap: 0.8rem;
 }

 .unit-card__btn {
     padding: 0.7rem 1.4rem;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.85rem;
     text-decoration: none;
     transition: all 0.3s;
     font-family: 'Manrope', sans-serif;
     letter-spacing: 0.2px;
 }

 .unit-card__btn--gold {
     background: #F1C300;
     color: #000;
     font-weight: 700;
 }

 .unit-card__btn--gold:hover {
     background: #f5d742;
     box-shadow: 0 6px 20px rgba(230, 184, 50, 0.5);
 }

 .unit-card__btn--outline {
     background: transparent;
     color: #F1C300;
     border: 1.5px solid #F1C300;
 }

 .unit-card__btn--outline:hover {
     background: rgba(230, 184, 50, 0.1);
 }

 .footer {
     background: #020202;
     border-top: 1px solid #F1C300;
     padding: 3rem 0;
     text-align: center;
 }

 .footer__brand {
     font-size: 1.5rem;
     font-weight: 700;
     background: linear-gradient(135deg, #f7d94e, #c49b1a);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 0.5rem;
 }

 .footer__slogan {
     color: #c9c9c9;
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 .footer__links {
     display: flex;
     gap: 2rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 .footer__link {
     color: #c9c9c9;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
     font-size: 0.9rem;
 }

 .footer__link:hover {
     color: #F1C300;
 }

 .footer__copy {
     margin-top: 2rem;
     color: #444;
     font-size: 0.8rem;
 }

 .page--contato {
     display: none;
 }

 .page--home {
     display: block;
 }

 .contato-hero {
     min-height: 70vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding-top: 6rem;
     background: radial-gradient(ellipse 60% 50% at 50% 40%, #1a1408 0%, #000 70%);
 }

 .contato-hero__title {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 800;
     letter-spacing: -1.5px;
 }

 .contato-hero__title span {
     background: linear-gradient(135deg, #f7d94e, #c49b1a);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .contato__grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 1.5rem;
     padding: 3rem 0 5rem;
 }

 .contato-card {
     background: #0a0a0a;
     border: 1px solid #F1C300;
     border-radius: 24px;
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all 0.4s;
     text-decoration: none;
     display: block;
 }

 .contato-card:hover {
     border-color: #F1C300;
     background: #0d0d0d;
     transform: translateY(-6px);
 }

 .contato-card__icon {
     color: #F1C300;
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .contato-card__title {
     font-size: 1.4rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 0.5rem;
 }

 .contato-card__desc {
     color: #888;
     font-size: 0.9rem;
 }

 .contato-card--whatsapp {
     border-color: rgba(37, 211, 102, 0.5);
 }

 .contato-card--instagram {
     border-color: rgba(230, 184, 50, 0.5);
 }

 @media (max-width: 900px) {
     .hero__grid {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 2rem;
     }

     .hero__slogan {
         border-left: none;
         border-top: 3px solid #F1C300;
         padding-left: 0;
         padding-top: 0.8rem;
     }

     .hero__badge {
         margin: 0 auto;
     }

     .hero__buttons {
         justify-content: center;
     }

     .hero__image-placeholder {
         font-size: 8rem;
         max-width: 300px;
     }

     .nav__links {
         display: none;
     }

     .nav__mobile-toggle {
         display: block;
     }

     .units__grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 500px) {
     .container {
         padding: 0 1.2rem;
     }

     .service-card {
         padding: 1.8rem 1.5rem;
     }

     .unit-card {
         padding: 1.8rem;
     }
 }
 
.linktree {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 4rem 1.5rem;
}

.linktree__avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 3px solid #F1C300;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(241, 195, 0, 0.3);
}

.linktree__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linktree__info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.linktree__name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.linktree__slogan {
    font-size: 0.9rem;
    color: #F1C300;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.linktree__divider {
    width: 40px;
    height: 2px;
    background: #F1C300;
    margin: 0 auto;
    border-radius: 2px;
}

.linktree__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.linktree__link {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.linktree__link:hover {
    border-color: #F1C300;
    background: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 195, 0, 0.12);
}

.linktree__link-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #F1C300;
}

.linktree__link-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.linktree__link-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.linktree__link-sub {
    font-size: 0.75rem;
    color: #777;
    font-weight: 400;
}

.linktree__link--whatsapp {
    border-color: rgba(37, 211, 102, 0.4);
}

.linktree__link--whatsapp .linktree__link-icon {
    color: #25d366;
}

.linktree__link--whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.linktree__link--instagram {
    border-color: rgba(241, 195, 0, 0.4);
}

.linktree__link--instagram .linktree__link-icon {
    color: #F1C300;
}

.linktree__link--instagram:hover {
    border-color: #F1C300;
    box-shadow: 0 8px 25px rgba(241, 195, 0, 0.2);
}

.linktree__link--emergency {
    border-color: rgba(255, 80, 80, 0.4);
}

.linktree__link--emergency .linktree__link-icon {
    color: #ff5050;
}

.linktree__link--emergency:hover {
    border-color: #ff5050;
    box-shadow: 0 8px 25px rgba(255, 80, 80, 0.15);
}

.linktree__footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.linktree__brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F1C300;
    letter-spacing: 0.5px;
}

.linktree__copy {
    font-size: 0.7rem;
    color: #555;
}

@media (max-width: 400px) {
    .linktree__link {
        padding: 0.85rem 1.2rem;
    }
    .linktree__avatar {
        width: 90px;
        height: 90px;
    }
}