/* style.css */
/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #000000;
    --dourado: #D4AF37;
    --dourado-claro: #F4E4A6;
    --cinza-escuro: #1a1a1a;
    --cinza-medio: #333333;
    --cinza-claro: #f5f5f5;
    --branco: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--branco);
    background-color: var(--preto);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Estilos do cabeçalho */
.header {
    background-color: var(--preto);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--dourado);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dourado);
}

.logo span {
    color: var(--branco);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--branco);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--dourado);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dourado);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dourado);
    font-size: 24px;
    cursor: pointer;
}

/* Seção Hero/Apresentação */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('images/handshake.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: var(--dourado);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--dourado-claro);
    margin-bottom: 30px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--branco);
}

.cta-button {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    transition: all 0.3s;
    border: 2px solid var(--dourado);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--dourado);
}

/* Títulos das seções */
.section-title {
    font-size: 36px;
    text-align: center;
    color: var(--dourado);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
}

/* Seção Serviços */
.services {
    background-color: var(--cinza-escuro);
}

.services-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.service-category {
    background-color: var(--cinza-medio);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--dourado);
}

.category-title {
    color: var(--dourado);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.service-icon {
    background-color: var(--preto);
    color: var(--dourado);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.service-text h4 {
    color: var(--dourado-claro);
    font-size: 18px;
    margin-bottom: 8px;
}

.service-text p {
    text-align: left;
    margin-bottom: 0;
    font-size: 15px;
}

.services-conclusion {
    background-color: var(--preto);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--dourado);
}

.services-conclusion p {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    color: var(--dourado-claro);
}

/* Seção Quem Somos */
.about {
    background-color: var(--preto);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Seção Sócias */
.partners {
    background-color: var(--cinza-escuro);
}

.partners-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background-color: var(--preto);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--dourado);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--cinza-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dourado);
    font-size: 50px;
    border: 3px solid var(--dourado);
}

.partner-name {
    color: var(--dourado);
    font-size: 24px;
    margin-bottom: 5px;
}

.partner-role {
    color: var(--dourado-claro);
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-bio {
    font-size: 15px;
    color: var(--branco);
}

/* Seção Contato */
.contact {
    background-color: var(--cinza-escuro);
}

.contact-content p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--cinza-medio);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--dourado);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--preto);
    color: var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-text h4 {
    color: var(--dourado);
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-text p {
    margin-bottom: 0;
    font-size: 16px;
}

.contact-text a:hover {
    color: var(--dourado);
    transition: color 0.3s;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--cinza-medio);
    border: 1px solid var(--dourado);
    border-radius: 5px;
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dourado-claro);
}

.submit-button {
    background-color: var(--dourado);
    color: var(--preto);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto 0;
}

.submit-button:hover {
    background-color: var(--dourado-claro);
}

/* Rodapé */
.footer {
    background-color: var(--preto);
    padding: 60px 0 20px;
    border-top: 1px solid var(--dourado);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    font-size: 16px;
    color: var(--dourado-claro);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--dourado);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--branco);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--branco);
}

.footer-contact i {
    color: var(--dourado);
}

.footer-contact a:hover {
    color: var(--dourado);
    transition: color 0.3s;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--cinza-medio);
    color: var(--dourado-claro);
}

/* Responsividade */
@media (max-width: 992px) {
    .services-grid,
    .partners-grid,
    .contact-info,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }

    .empresas-section {
        padding: 20px 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .carousel-container {
        padding: 20px 10px;
    }
    
    .empresa-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .empresa-logo i {
        font-size: 40px;
    }
    
    .empresa-nome {
        font-size: 1.3rem;
    }
    
    .empresa-desc {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--preto);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-top: 1px solid var(--dourado);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .empresa-logo {
        width: 90px;
        height: 90px;
    }
    
    .empresa-logo i {
        font-size: 35px;
    }
    
    .empresa-nome {
        font-size: 1.2rem;
    }
    
    .empresa-desc {
        font-size: 0.85rem;
        padding: 10px;
    }


}
/* Seção de empresas atendidas*/
.empresas-section {
    padding: 30px 15px;
    background-color: var(--preto);
    border-radius: 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #D4AF37;
    font-size: 1.8rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: #D4AF37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Carrossel - Compacto */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background-color: #151515;
    padding: 25px 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    min-height: 320px;
}

.empresa-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 3px solid #D4AF37;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.empresa-logo:hover {
    transform: scale(1.05);
    border-color: #FFD700;
}

.empresa-logo i {
    font-size: 50px;
    color: #D4AF37;
}

/* Ensure images inside the logo container scale and crop correctly */
.empresa-logo img,
.empresa-logo i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Partner circular images should also fill their container */
.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
.empresa-info {
    text-align: center;
    max-width: 650px;
    padding: 0 15px;
}

.empresa-nome {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
}

.empresa-desc {
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.5;
    background-color: rgba(26, 26, 26, 0.6);
    padding: 15px;
    border-radius: 8px;
    border-left: 2px solid #D4AF37;
}

/* Botões de navegação - Compactos */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 55, 0.8);
    color: #0a0a0a;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator:hover {
    background-color: #D4AF37;
}

.indicator.active {
    background-color: #D4AF37;
    transform: scale(1.2);
}

/* Contador de slides */
.slide-counter {
    text-align: center;
    margin-top: 12px;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 500;
}
