:root {
    --main-color: #dd7615;
    --black: #13131a;
    --bg: #290a00;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: '1995', sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: 0.3s ease;
    text-align: left; 
}

body {
    background-color: var(--bg);
    background-image: url(./img/gps-system-smart-car3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    
}

.section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center; 

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 10px;
    display: flex;
    justify-content: center;
}

.header > section {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    margin-left: 15px;
    justify-content: space-between; 
}

.header .logo img {
    margin-right: 10px;
    border-radius: 20px;
}

.navbar {
    display: flex;
    gap: 1rem; 
    align-items: center;
    justify-content: center;
}

.navbar a {
    margin: 0 1rem;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: var(--border);
    padding-bottom: 0.1rem;
}

.logo:hover {
    color: #fff;
}

.logo img {
    margin: 0.3rem;
    border-radius: 6rem;
}

/* Hamburger styles */
.menu-btn {
    display: none; 
}

.hamburger {
    display: none; 
    cursor: pointer;
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}


.menu-btn:checked + .hamburger::before {
    content: '\2715'; 
   
}

/* Media queries for responsiveness */
@media (max-width: 768px) {

    .header{
        padding: 1rem;
    }
    .header > section {
        justify-content: space-between; 
        padding: 1px 5px;
    }

    .hamburger {
        display: block;
        
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        display: none; 
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
    }

   
    .menu-btn:checked ~ .navbar {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar a {
        margin: 1rem 0;
        font-size: 1.6rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header > section {
        padding: 0.rem 1rem;
    }

    .header .logo {
        font-size: 1.2rem;
        display: none;
       
    }

    .header .logo img {
        height: 3rem; 
        display: none; 
    }

    .navbar a {
        font-size: 1.4rem;
    }

    .hamburger {
        font-size: 2rem;
        
    }
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: #ffffff;
    background-color: var(--main-color);
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: '1995', sans-serif;
    font-weight: bolder;
}

.btn:hover {
    background-color: #ffffff;
    color: var(--main-color);
    border: var(--border);
}

.home-container {
    text-align: center;
    padding-top: 17rem;
    padding-bottom: 10rem;
    background: url("./img/gps-system-smart-car3.png") no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.home-container section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; 
}

.icons2 {
    width: 14rem;
    cursor: pointer;
}

.icons {
    width: 5rem; 
    cursor: pointer;
}


.content {
    max-width: 58rem;
    text-align: left;
    margin: 0 auto;
}

.content h3 {
    color: white;
    font-size: 4rem;
}

.content p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500; 
    line-height: 1.8;
    padding: 0.5rem 0;
    margin: 1rem 0; 
}

.title {
    font-size: 2.4rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    font-weight: bold;
    margin: 3rem 0;
    margin-bottom: 0rem;
}

.title span {
    border-bottom: var(--border); 
    color: #fff;
    text-transform: uppercase;
}

.about .row {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 2rem; 
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 1200px; 
    
    border-radius: 4rem;
}

.about .arredondado{
    border-radius: 1rem;
}

.about .image {
    border-radius: 1rem;
    cursor: pointer;
}

.about .content p {
    padding-bottom: 2rem;
    font-size: 1.4rem;
    color: white;
}

.presentation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 1200px;
    margin-top: 3rem;
}

.presentation .video-container {
    align-items: center;
    justify-content: space-between;
    border-radius: 1rem;
    cursor: pointer;
}

.video-container video {
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    cursor: pointer;
}

.presentation .content p {
    padding-bottom: 12rem;
    font-size: 1.5rem;
    color: #fff;
}

.borda {
    border-radius: 1rem;
}

.packages .row {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 2rem; 
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
}

.packages .image {
    border-radius: 1rem;
    cursor: pointer;
}

.packages .content p {
    padding-bottom: 1rem;
    font-size: 1.4rem;
    color: #fff;
}

.packages .content h2 {
    font-size: 2rem;
    color: var(--main-color);
}

/* Processo */
.processo {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 1.5rem;
    padding: 20px;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  
}


.etapa {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.etapa:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.numero {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5rem; 
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f0f0f0;
}

/* Planos */
.planos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
      background-color: black;
      background-image: url(./img/gps-system-smart-car3.png)erer;
      border-radius: 4rem;
    
}

.plano {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 15px;
    margin-top: 1rem;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.3s ease;
}

.plano:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

h4 {
    color: #ffd54f;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 400;
}

ul {
    list-style: disc;
    margin: 0 0 20px 18px;
    padding: 0;
}

li {
    font-size: 1.4rem;
    color: #f8f8f8;
    line-height: 1.5;
    margin-bottom: 6px;
}

.preco {
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    color: #ffd54f;
    margin-top: auto;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.testimonials .testimonials-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
    text-align: center;
    border-radius: 0.5rem;
    margin-top: 3rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}


.provas {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    text-align: center;
    border-radius: 0.5rem;
    margin: 0.5rem 0 2rem;
    line-height: 1.8;
    transition: transform 0.3s ease, background 0.3s ease;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.provas img {
    cursor: pointer;
    border-radius: 1rem;
    border: var(--border);
     
}

.provas img:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(94, 94, 94, 0.2);
}

/* Footer */
.footer {
    background: #0e0e12;
    color: #f1f1f1;
    padding: 60px 10%;
    font-family: '1995', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-form {
    flex: 1;
    min-width: 320px;
}

.footer-form h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-form h2 span {
    font-weight: 400;
    color: #b8b8b8;
    font-size: 1rem;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1b1b22;
    color: #fff;
    font-size: 1.3rem; /* Unificado */
    outline: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #999;
    font-size: 1.3rem;
}

.footer-form button {
    background: linear-gradient(135deg, #4b1bff, #8a2eff);
    color: #fff;
    border: none;
    padding: 14px 235px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
}

.footer-form button:hover {
    background: linear-gradient(135deg, #8a2eff, #4b1bff);
    transform: translateY(-2px);
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-info p {
    font-size: 1.4rem;
    margin: 10px 0;
    line-height: 1.6;
    color: #d4d4d4;
}

.footer-info a {
    color: var(--main-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    border-top: 1px solid #2a2a33;
    padding-top: 15px;
    color: #888;
    font-size: 1.4rem;
}

.footer-container .footer-form span {
    font-size: 1.4rem;
    margin-top: 3rem;
}

.status-message {
    margin-top: 15px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.status-message.success {
    background-color: #1dd85e1f;
    border: 1px solid #2fd36e;
    color: #2fd36e;
}

.status-message.error {
    background-color: #ff31311a;
    border: 1px solid #ff3131;
    color: #ff4a4a;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recovery {
    margin: 0 auto 2rem;
    text-align: center;
     margin-bottom: 10rem;
}

.recovery h2 {
    color: #dd7615;
    font-size: 2rem;
    margin-bottom: 3rem;
}


.clients {
    padding: 20px 0;
    overflow: hidden;
}

.clients .title {
    text-align: center;
    margin-bottom: 20px;
}

.clientes {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 100s linear infinite;
    font-family: '1995', sans-serif;
}

.clientes span {
    border: 2px solid #666;
    border-radius: 2rem;
    padding: 8px 15px;
    display: inline-block;
    margin-right: 60px;
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 2rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.clientes:hover {
    animation-play-state: paused;
}

/* Reveal Delays */
.reveal:nth-child(1) {
    transition-delay: 0.1s;
}
.reveal:nth-child(2) {
    transition-delay: 0.2s;
}
.reveal:nth-child(3) {
    transition-delay: 0.3s;
}
.reveal:nth-child(4) {
    transition-delay: 0.4s;
}
.reveal:nth-child(5) {
    transition-delay: 0.5s;
}
.reveal:nth-child(6) {
    transition-delay: 0.6s;
}
.reveal:nth-child(7) {
    transition-delay: 0.7s;
}


.icons-container {
    display: grid;
    align-items: stretch;
    justify-items: stretch; 
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-left: 30rem;
   
}

.icons-container .icons {
    display: inline-block;
    text-align: left;
    padding: 1.8rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    border: 0.1rem solid #fff;
    transition: transform 0.3s ease, background 0.3s ease;
    width: 100%; 
}

.icons-container .icons:hover {
    background-color: var(--bg);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.icons-container .icons p {
    font-size: 1.4rem;
    color: #fff;
    padding-top: 0.2rem;
    text-align: left;
}

.icons-container .icons h4 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.content h2 {
    font-size: 2rem;
    color: var(--main-color);
}

@media (max-width: 480px) {
    .header > section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .testimonials-container{
        flex-direction: column;
    }

    .about .content video{
        width: 100%;
        height: 150%;
        margin: 0 auto;
        }

    .about .content{
        margin-top: 0 auto;
    }

    .home-container .content{
        margin-top: 8rem;
    }

    .packages .planos{
        margin-top: 1.5rem;
    }

    .recovery .provas{
        margin-top: 1rem;
        width: 90%;
    }

    .home-container .content .btn{
        padding: 1rem, 0rem;
    }

    .provas{
        flex-direction: column;
    }

    .footer-form button{
        flex-direction: column;
        padding: 10px 108px;
    }

    .body img{
        width: 60%;
        opacity: 50%;

    }

    .navbar a {
        margin: 0.5rem 0;
        font-size: 1.4rem;
    }
    .icons-container {
        grid-template-columns: 1fr;
         margin: 0 auto;
         width: 90%;
         margin-top: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .content {
        max-width: 90%;
        flex-direction: column;
    }
    .content h3 {
        font-size: 2.5rem;
    }
    .image{
        font-size: 1rem;
        width: 20px;    
        flex-direction: column;
    }
    .content p {
        font-size: 1.3rem;
    }
    .title {
        font-size: 1.8rem;
    }
    .footer-form,
    .footer-info {
        min-width: 100%;
    }
    .provas img {
        max-width: 100%;
    }
    .home-container {
        padding-top: clamp(8rem, 12vw, 10rem);
    }
}