body {
    margin: 0;
    background-color: #0d0d0d;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0d0d0d;
    padding: 15px 40px;
    border-bottom: 1px solid #0d0d0d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    gap: 30px;
}

.logo-s {
    width: 100px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
}

.nav-link {
    color: #ccc;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:last-child {
    margin-right: 0;
}

.nav-link:hover {
    color: white;
}

/* HOME */
/* INI */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    color: #f0f0f0;
}

.hero-text h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 18px;
    color: #aaa;
}

.cta-section {
    padding: 30px 40px;
    background-color: #111;
    text-align: center;
    color: #f0f0f0;
    margin-top: 40px;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 60%;
    height: auto;
    border-radius: 12px;
}

/*-- REVIEW */
/*-- INÍCIO */

.reviews-section {
    padding: 10px 40px 40px 40px;
}

.reviews-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.star-avg {
    color: gold;
    font-weight: bold;
    margin-left: 8px;
}

.review-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.review-slider {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    animation: scrollReviews 20s linear infinite;
    padding-bottom: 10px;
}

.review-slider-wrapper:hover .review-slider {
    animation-play-state: paused;
}

.review-slider::-webkit-scrollbar {
    height: 6px;
}

.review-slider::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.review-card {
    background-color: #1a1a1a;
    color: #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 280px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars i {
    color: gold;
    font-size: 14px;
}

.star-count {
    font-size: 13px;
    color: #ccc;
    margin-left: 4px;
}

.review-service {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.review-comment {
    font-size: 16px;
    line-height: 1.4;
}

.no-reviews,
.error {
    color: #999;
    font-style: italic;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*-- REVIEW */
/*-- FIM */

/*-- SERVICES HIGHLIGHT */
/*-- INÍCIO */
.services-highlight {
    padding: 60px 40px;
    background-color: #0f0f0f;
    color: #f0f0f0;
    text-align: center;
}

.services-highlight h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.service-card i {
    font-size: 32px;
    color: #ffcc00;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.4;
}

@media (max-width: 1300px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/*-- SERVICES HIGHLIGHT */
/*-- FIM */

/*-- TACK STACK */
/*-- INI */

.tech-stack {
    padding: 60px 40px;
    background-color: #0d0d0d;
    text-align: center;
    color: #f0f0f0;
}

.tech-stack h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #ffffff;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tech-item {
    background-color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #ffcc00;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.tech-item i {
    font-size: 20px;
}

.tech-item:hover {
    background-color: #292929;
}
/*-- TACK STACK */
/*-- FIM */

/*-- FAQ SECTION */
/*-- INI */
.faq-section {
    padding: 60px 40px;
    background-color: #0f0f0f;
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
}

.faq-section h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    color: #fff;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffcc00;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #292929;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #222;
    border-radius: 0 0 8px 8px;
    padding: 0 20px;
}

.faq-answer p {
    margin: 15px 0;
    color: #ccc;
}

.faq-question {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    margin-left: 10px;
    color: #ffcc00;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/*-- FAQ SECTION */
/*-- FIM */

/* HOME */
/* FIM */

.footer {
    background-color: #0d0d0d;
    color: #ccc;
    padding: 40px 20px 20px;
    font-size: 14px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 250px;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;

    img{
        width: 50px;
    }
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffcc00;
}

.social-icons a {
    color: #ffcc00;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 15px;
    color: #777;
}
.made-with {
    margin-top: 20px;
    font-size: 13px;
    color: #999;
}

.tech-icons-footer i {
    margin-left: 8px;
    font-size: 18px;
    color: #ffcc00;
    vertical-align: middle;
}

/* CUSTOM ALERT */

.alert-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 0 20px;
}

.alert-box {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 300px;
    max-width: 600px;
    transition: opacity 0.3s ease;
}

.alert-box.success {
    background-color: #28a745;
}

.alert-box.error {
    background-color: #dc3545;
}

.alert-box.warning {
    background-color: #ffc107;
    color: #000;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
}

/* MENU */

/* Hamburguer */
.hamburger-menu {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.hamburger-menu .icon,
.hamburger-menu .icon::before,
.hamburger-menu .icon::after {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #fff;
  left: 5px;
  transition: 0.3s ease-in-out;
}

.hamburger-menu .icon {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu .icon::before {
  content: "";
  top: -10px;
}

.hamburger-menu .icon::after {
  content: "";
  top: 10px;
}

.hamburger-menu.open .icon {
  background-color: transparent;
}

.hamburger-menu.open .icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.open .icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsivo */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 15px;
    z-index: 1000;
    border-radius: 6px;
  }

  .navbar.open {
    display: flex;
  }

  .hamburger-menu {
    display: block;
  }
  .hero-section {
    padding: 10px 40px;
    display: block;
  }
  .cta-section{
    padding: 10px 10px 30px 10px;
  }
  .hero-image{
    margin-top: 10px;
  }
}
