/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #E7A83E;
    --light-gold: #EFC57E;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
    background-color: #F5F5F5; /* Cor de fundo para o menu */
    position: fixed; /* Fixa o elemento na tela */
    top: 0;          /* Alinha no topo da janela */
    width: 100%;     /* Faz com que ocupe toda a largura */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 40%; /*30px;*/
    width:  40%; /*auto; */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}


.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 110px;
    width: auto;
    /*filter: brightness(0) invert(1);*/
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 168, 62, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 168, 62, 0.4);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
    border-radius: 2px;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background: var(--light-gray);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.marcas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.marca-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.marca-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.marca-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

/* Soluções Section */
.solucoes {
    padding: 100px 0;
    background: var(--white);
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solucao-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, background 0.3s ease;
}

.solucao-item:hover {
    transform: translateY(-10px);
    background: var(--primary-gold);
    color: var(--white);
}

.solucao-item:hover i {
    color: var(--white);
}

.solucao-item:hover h3 {
    color: var(--white);
}

.solucao-item:hover p {
    color: var(--white);
}

.solucao-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.solucao-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.solucao-item p {
    color: var(--gray);
    transition: color 0.3s ease;
}

/* Instalações Section */
.instalacoes {
    padding: 100px 0;
    background: var(--white);
}

.instalacoes-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.instalacao-slide {
    min-width: 100%;
    position: relative;
}

.instalacao-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.instalacao-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

.instalacao-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 168, 62, 0.9);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Formas de Acesso Section */
.formas-acesso {
    padding: 100px 0;
    background: var(--light-gray);
}

.formas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.forma-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.forma-item:hover {
    transform: translateY(-10px);
}

.forma-image {
    height: 250px;
    overflow: hidden;
}

.forma-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.forma-item:hover .forma-img {
    transform: scale(1.1);
}

.forma-content {
    padding: 2rem;
}

.forma-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.forma-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.depoimentos-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    overflow: hidden;
}

.depoimento-slide {
    display: none;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.depoimento-slide.active {
    display: block;
}

.depoimento-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.depoimento-author {
    font-weight: 600;
    color: var(--black);
}

.depoimento-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.depoimento-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.depoimento-indicator.active {
    background: var(--primary-gold);
}

/* Parallax Sections */
.parallax-section {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.parallax-1 {
    background-image: url('../images/parallax1_catracas.jpg');
	background-attachment: fixed; /* Esta é a chave */
}

.parallax-2 {
    background-image: url('../images/parallax2_biometrico.jpg');
	background-attachment: fixed; /* Esta é a chave */
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
}

.parallax-subtitle {
    font-size: 1.3rem;
	/*color: #e7a83e;
	font-style: italic;*/
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Mobile Parallax Adjustments */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: fixed;
        height: 60vh;
    }
    
    .parallax-title {
        font-size: 2rem;
    }
    
    .parallax-subtitle {
        font-size: 1.1rem;
    }
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background: var(--light-gray);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mapa-container {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 400px;
}

#mapa {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
}

.social-media {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-media a {
    color: var(--gray);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--primary-gold);
}

.fachada-endereco {
    margin: 2rem 0;
    text-align: center;
}

.fachada-img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.fachada-img:hover {
    transform: scale(1.05);
}

.fachada-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.contato-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

@media (max-width: 1024px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa-container {
        order: 1;
    }
    
    .contato-info {
        order: 2;
    }
    
    .contato-form {
        order: 3;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 168, 62, 0.3);
}

.mapa-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.mapa {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    /*filter: brightness(0) invert(1);*/
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .formas-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .solucoes-grid {
        grid-template-columns: 1fr;
    }

    .depoimento-slide {
        padding: 1.5rem;
    }

    .depoimento-text {
        font-size: 1.1rem;
    }

    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .feature-item,
    .contato-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

