/* Reset e Variáveis Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.logo a span {
    color: #f39c12; /* Laranja remetendo ao sol */
    font-weight: normal;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #f39c12;
}

/* Slider Banner */
.banner-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #e9e9e9;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay escuro para destacar o texto branco */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff; /* Texto branco em cima da imagem */
    padding: 0 40px;
}

.slide-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f39c12;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #d68910;
}

/* Controles do Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Sobre a Empresa */
.sobre-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.sobre-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #000;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 16px;
}

.sobre-cta {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 5px solid #25d366; /* Verde do WhatsApp */
}

.sobre-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}

.sobre-cta p {
    margin-bottom: 20px;
    font-weight: bold;
}

.btn-cta-whatsapp {
    display: inline-block;
    padding: 15px 35px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cta-whatsapp i {
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
}

.btn-cta-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    color: #fff;
}

.sobre-imagem {
    flex: 1;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer / Contato */
.footer {
    background-color: #111111;
    color: #ffffff;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-info .logo a {
    color: #ffffff;
}

.footer-info p {
    margin-top: 15px;
    color: #aaaaaa;
    max-width: 300px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    color: #aaaaaa;
    transition: color 0.3s;
    font-size: 15px;
}

.social-links a i {
    width: 20px;
    margin-right: 10px;
    color: #f39c12;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #777777;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 20px 0;
        gap: 20px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}
