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

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-image: url('../img/Base_Home.webp');
    background-size: cover;
    background-position: top;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.header-sub-text {
    max-width: 500px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.logo img {
    width: 220px;
}

.logo p {
    font-size: 0.9em;
    margin-top: 5px;
}

.header-text {
    text-align: left;
    margin-bottom: 40px;
    padding-top: 100px;
    padding-left: 100px;
}

.header-text h1 {
    font-size: 3em;
    line-height: 1.1;
    font-weight: bold;
    margin: 0;
}

.header-text p {
    font-size: 1.5em;
    margin-top: 10px;
}

.highlight-red {
    color: red;
}

.highlight-bold {
    font-weight: bold;
    color: white;
}

.maintenance-section {
    width: 100%;
    background-color: red;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.maintenance {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.maintenance-text {
    width: 40%;
    text-align: left;
}

.maintenance-text h2 {
    font-size: 1.8em;
    line-height: 1;
    font-weight: normal;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-red {
    width: 20px;
    height: 20px;
    background-color: red;
    border: 2px solid black;
    border-radius: 50%;
    margin: 5px 0;
    box-shadow: 0 0 0 3px white;
}

.circle-white {
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid black;
    border-radius: 50%;
    margin: 5px 0;
    margin-top: 1px;
    margin-bottom: 1px;
}

.line {
    width: 2px;
    height: 40px;
    background-color: #000000;
}

.maintenance-info {
    text-align: left;
}

.maintenance-info p {
    font-size: 1.8em;
    line-height: 1;
    margin: 0;
}

.footer {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2em;
    padding-top: 60px;
}

.footer-content {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

.icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

copyright {
    text-align: center;
    font-size: 0.8em;
}

/* Seção de Serviços - Versão Desktop */
.services {
    padding: 3em 1em;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.services-subtitle {
    font-size: 1.2em;
    margin-bottom: 2em;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.card {
    background-color: #222;
    border: 2px solid #f90f00;
    text-align: center;
    width: 250px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    color: #fff;
    font-size: 1em;
}

.card-content p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
}

.service-button {
    background-color: #FF1C00;
    color: #fff;
    border: none;
    padding: 0.8em;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    border-top: 2px solid #FF1C00;
    font-weight: bold;
}

.service-button:hover {
    background-color: #FF1C00;
}

.cta {
    padding: 3em 1em;
    text-align: center;
}

.quote {
    display: inline-block;
    position: relative;
}

.quote img {
    max-width: 80%;
    height: auto;
}

.history {
    text-align: center;
}

.history-button {
    display: inline-block;
    margin-top: 1em;
    padding: 1em 2em;
    background-color: #FF1C00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

/* Slider Mobile */
.service-slider {
    display: none;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.service-cards-slider {
    display: flex;
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 28, 0, 0.7);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 60px;
    z-index: 10;
    border-radius: 4px;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(255, 28, 0, 0.9);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.slider-dots {
    display: none; /* Inicialmente escondido */
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #FF1C00;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .header-text {
        padding-top: 20px;
        padding-left: 20px;
    }

    .header-text h1 {
        font-size: 2em;
    }

    .header-text p {
        font-size: 1.2em;
    }

    .maintenance-section {
        padding: 20px 0;
    }

    .maintenance-text h2 {
        font-size: 1.2em;
        line-height: 1.2;
    }

    .maintenance-info p {
        font-size: 1.2em;
    }

    .maintenance {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .timeline {
        flex-direction: row;
        height: auto;
        margin: 20px 0;
    }

    .circle-red, 
    .circle-white {
        margin: 0 5px;
    }

    .line {
        width: 40px;
        height: 2px;
    }

    /* Estilos do Slider em Mobile */
    .service-cards {
        display: none;
    }
    
    .service-slider {
        display: block;
    }
    
    .slider-dots {
        display: flex;
    }
    
    .card {
        min-width: calc(100% - 20px);
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
    }
    
    @media (min-width: 481px) {
        .card {
            min-width: calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
        }
    }
    
    .footer-content {
        font-size: 1em;
    }

    .contact-info {
        font-size: 0.9em;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .maintenance {
        align-items: center;
        text-align: center;
    }
    
    .maintenance-text,
    .maintenance-info {
        width: 100%;
        text-align: center;
    }
}

/* Container de Contato */
.contact-container {
    background-color: #000;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.contact-box {
    border: 2px solid #FF1C00;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact-title {
    color: #FFF;
    font-size: 2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF1C00;
}

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

.contact-item {
    padding: 12px 20px;
    border: 1px solid #333;
    background-color: #111;
}

.contact-item.highlighted {
    border-color: #FF1C00;
    background-color: rgba(255, 28, 0, 0.1);
}

.contact-text {
    color: #FFF;
    font-size: 1.1rem;
}

.copyright {
    color: #AAA;
    font-size: 0.9rem;
    margin-top: 20px;
}

.firee-off {
    color: #FFF;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-box {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 10px 15px;
    }
}

.icon-check {
  background-image: url('../img/check.svg');
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
}
