/* Reset e Variáveis */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #f76d04;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0.5rem auto;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 1rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background: var(--light-color);
}

/* Navegação */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    /* Altura do navbar */
}

.logo-img {
    height: 40px;
    /* Ajuste conforme necessário */
    width: auto;
    transition: var(--transition);
}

.logo-footer-img {
    height: 90px;
    /* Ajuste conforme necessário */
    width: auto;
    transition: var(--transition);
}

/* Ajuste para navbar scrollado */
#navbar.scrolled .logo-img {
    height: 35px;
    /* Logo ligeiramente menor */
}

/* Responsividade */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    #navbar.scrolled .logo-img {
        height: 30px;
    }
}

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

.nav-list a {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section Atualizada */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    color: white;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Ajustes na Copy */
.hero h1 {
    font-size: 2.7rem;
    line-height: 1.25;
}

.cta-lead {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

/* Destaques na Headline */
.highlight {
    position: relative;
    white-space: nowrap;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(231, 76, 60, 0.4);
    z-index: -1;
    transform: rotate(-1deg);
}

/* Ícone do botão */
.btn-primary i {
    margin-right: 8px;
}

.hero h1 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero h1 .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(231, 76, 60, 0.3);
    z-index: -1;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 90%;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-form input {
    padding: 1rem;
    border-radius: 4px;
    border: none;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
}

.lead-form button {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
}

.hero-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 500px;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero com Vídeo Parallax */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-container:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #181818;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .8;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Zoom suave para efeito parallax */
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.9) 0%,
        rgba(44, 62, 80, 0.7) 50%,
        rgba(44, 62, 80, 0.8) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 6rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-badge .badge-text {
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero h1 .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(231, 76, 60, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Value Proposition */
.value-proposition {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.value-item {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    font-size: 1rem;
    opacity: 0.9;
    text-align: left;
}

.value-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Formulário */
.lead-form {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.8s both;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lead-form input {
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.lead-form input::placeholder {
    color: #666;
}

.lead-form button {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Corporate Trust */
.corporate-trust {
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease 1s both;
}

.corporate-trust p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    opacity: 0.7;
    animation: fadeIn 2s ease 2s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Efeito Parallax no Scroll */
.hero-video {
    will-change: transform;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .value-proposition {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .lead-form input {
        padding: 1rem 1.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .value-item {
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
    }
}

/* Fallback para caso o vídeo não carregue */
.no-video .hero-video-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.no-video .hero-video {
    display: none;
}

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

.trust-signals {
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-item i {
    color: var(--secondary-color);
}

/* Responsividade Hero */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-media {
        height: 400px;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .hero-media {
        height: 300px;
    }
}

/* Seção Quem Somos */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.reverse {
    flex-direction: row-reverse;
}

.text-content,
.image-content {
    flex: 1;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diferencial-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Container do carrossel Slick */
.servicos-carrossel {
    margin: 3rem 0;
    position: relative;
}

/* Slides */
.servico-slide {
    padding: 0 15px;
    outline: none;
}

.servico-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    /* Proporção 4:5 */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.servico-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.servico-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: white;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.servico-overlay h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.servico-overlay ul {
    margin-top: 0.8rem;
}

.servico-overlay ul li {
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1.4;
}

.servico-overlay ul li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Setas do Slick - Customizadas */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: none;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slick-prev:before {
    content: '\f053';
    /* Chevron left */
}

.slick-next:before {
    content: '\f054';
    /* Chevron right */
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--secondary-color);
    opacity: 1;
    transform: scale(1.2);
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

/* Dots do Slick - Customizados */
.slick-dots {
    bottom: -40px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
    transform: scale(1.3);
}

.slick-dots li button:hover:before {
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 1200px) {
    .slick-prev {
        left: -40px;
    }

    .slick-next {
        right: -40px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .servico-slide {
        padding: 0 10px;
    }

    .slick-prev {
        left: -30px;
    }

    .slick-next {
        right: -30px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .servicos-carrossel {
        margin: 2rem 0;
    }

    .slick-prev {
        left: -25px;
    }

    .slick-next {
        right: -25px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 1.3rem;
    }

    .servico-overlay {
        padding: 1.2rem;
    }

    .servico-overlay h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .servico-slide {
        padding: 0 8px;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        display: none !important;
    }

    .slick-next {
        display: none !important;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 1.1rem;
    }

    .servico-overlay {
        padding: 1rem;
    }

    .servico-overlay h3 {
        font-size: 1.1rem;
    }

    .servico-overlay ul li {
        font-size: 0.8rem;
    }

    .slick-dots {
        bottom: -30px;
    }
}

/* Ajuste para quando houver poucos slides */
.servicos-carrossel .slick-track {
    display: flex;
    align-items: stretch;
}

.servico-slide {
    height: auto;
}

/* Remove o outline padrão do Slick */
.slick-slide:focus {
    outline: none;
}

/* Seção Diferenciais */

#diferenciais .image-content {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 500px;
    background-image: url('../img/trabalho.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -212px;
}

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.diferenciais-list .diferencial-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.diferenciais-list .diferencial-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

/* Seção Trabalhe Conosco */
.trabalhe-form {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-family: inherit;
}

input[type="file"] {
    display: none;
}

input[type="file"]+label {
    display: inline-block;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    flex: 1;
    border: 1px solid;
    border-style: dashed;
}

/* Mini CTA */
.mini-cta {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.mini-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* Frase de Autoridade */
.frase-autoridade {
    padding: 4rem 0;
    background: var(--light-color);
    text-align: center;
}

.frase-autoridade blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.frase-autoridade blockquote:before,
.frase-autoridade blockquote:after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
}

.frase-autoridade blockquote:before {
    top: -1.5rem;
    left: 0rem;
}

.frase-autoridade blockquote:after {
    bottom: -3rem;
    right: 0rem;
}

/* Seção Contato */
.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Remover o mapa-container antigo */
.map-container {
    display: none;
}

/* Nova Seção Mapa Full Width */
.mapa-full-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.mapa-container {
    position: relative;
    width: 100%;
    height: 500px;
    /* Altura do mapa */
    overflow: hidden;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(110%);
}

/* Overlay com informações */
.mapa-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 300px;
    z-index: 10;
}

.mapa-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mapa-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.mapa-info i {
    color: var(--secondary-color);
    width: 20px;
}

.mapa-info .btn-primary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Efeito de hover no botão */
.mapa-info .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Responsividade do Mapa */
@media (max-width: 992px) {
    .mapa-container {
        height: 450px;
    }

    .mapa-overlay {
        top: 20px;
        right: 20px;
        padding: 1.5rem;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .mapa-container {
        height: 400px;
    }

    .mapa-overlay {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        text-align: center;
        background: var(--light-color);
    }

    .mapa-info {
        padding: 1rem;
    }

    .mapa-info h3 {
        font-size: 1.2rem;
    }

    .mapa-info p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mapa-container {
        height: 350px;
    }

    .mapa-overlay {
        padding: 1rem;
    }

    .mapa-info {
        padding: 0.8rem;
    }

    .mapa-info h3 {
        font-size: 1.1rem;
    }

    .mapa-info p {
        font-size: 0.9rem;
    }
}

/* Ajuste para telas muito grandes */
@media (min-width: 1600px) {
    .mapa-container {
        height: 600px;
    }

    .mapa-overlay {
        top: 50px;
        right: 50px;
        padding: 2.5rem;
        max-width: 350px;
    }
}

/* Efeito de loading suave */
.mapa-container iframe {
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.mapa-container iframe.loaded {
    opacity: 1;
}

/* Adicionar separador visual antes do mapa */
#contato {
    position: relative;
}

#contato:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.3;
}

/* Rodapé */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    transition: var(--transition);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    justify-content: space-between;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

.whatsapp-tooltip {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-close {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.whatsapp-float:hover .whatsapp-close {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-close:hover {
    background: #ff4444;
    color: white;
    transform: scale(1.1);
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Estados do botão */
.whatsapp-float.hidden {
    transform: translateX(100px);
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float.minimized .whatsapp-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
        margin-right: 10px;
    }

    .whatsapp-close {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Esconde tooltip em mobile */
    }

    .whatsapp-close {
        display: none;
        /* Esconde botão fechar em mobile */
    }
}

/* Modo escuro (opcional) */
@media (prefers-color-scheme: dark) {
    .whatsapp-tooltip {
        background: rgba(45, 45, 45, 0.95);
        color: white;
    }

    .whatsapp-close {
        background: rgba(45, 45, 45, 0.9);
        color: #ccc;
    }
}

/* Acessibilidade - foco visível */
.whatsapp-link:focus,
.whatsapp-close:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}



/* Responsividade */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .image-content {
        margin-top: 2rem;
    }

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

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

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 8rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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