/* CSS Reset e Configurações Globais */
:root {
    --primary-color: #f47920; /* Laranja padrão */
    --secondary-color: #2c2c2c; /* Cinza escuro */
    --accent-color: #e85d04; /* Laranja de destaque, mais intenso */
    --light-gray: #f5f5f5; /* Cinza bem claro para fundos */
    --text-color: #4a4a4a; /* Cinza para texto */
    --white: #ffffff;
    /* A cor --dark-blue foi removida para padronizar com cinza e laranja */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color); 
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
}

section {
    padding: 80px 0;
}

/* Cabeçalho */
header {
    background: var(--white);
    padding: 1px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 100px;
}

img.logo {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 30%;
    border: solid 2px rgb(206, 87, 8);
}

img.logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

header nav a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Botão do Menu Mobile (Hambúrguer) */
.mobile-nav-toggle {
    display: none;
    position: absolute;
    z-index: 2000;
    right: 1rem;
    top: 2rem;
    background: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='21'%3e%3cg fill='%23f47920' fill-rule='evenodd'%3e%3cpath d='M0 0h24v3H0zM0 9h24v3H0zM0 18h24v3H0z'/%3e%3c/g%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    width: 2rem;
    aspect-ratio: 1;
    border: 0;
    cursor: pointer;
}

.mobile-nav-toggle[aria-expanded="true"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21'%3e%3cg fill='%23f47920' fill-rule='evenodd'%3e%3cpath d='M2.575.954l16.97 16.97-2.12 2.122L.455 3.076z'/%3e%3cpath d='M.454 17.925L17.424.955l2.122 2.12-16.97 16.97z'/%3e%3c/g%3e%3c/svg%3e");
}

/* Esconde o texto "Menu" visualmente, mas o mantém para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: block;
    }
}

/* Ícones Sociais no Cabeçalho */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    background: rgba(244, 121, 32, 0.1);
}

.social-icons a:hover {
    color: var(--primary-color); 
    transform: scale(1.2) rotate(15deg);
    background: rgba(244, 121, 32, 0.2);
    box-shadow: 0 0 15px rgba(244, 121, 32, 0.3);
}

/* Botão de Chamada para Ação (CTA) */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Seção Inicial (Hero) - Removido o azul */
#inicio {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

#inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    background: radial-gradient(circle at 20% 50%, rgba(244, 121, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(232, 93, 4, 0.1) 0%, transparent 50%);
    z-index: 1;
}

#inicio .container {
    position: relative;
    z-index: 2;
}

#inicio h2 {
    font-size: 4rem;
    color: var(--white);
    animation: fadeInDown 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

#inicio p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

#inicio .cta-button {
    animation: bounce 1.5s ease-out;
}

/* Seção Sobre */
#sobre {
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

#sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.sobre-text {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.sobre-img {
    flex: 1;
    animation: fadeInRight 1s ease-out;
}

.sobre-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.sobre-img img:hover {
    transform: scale(1.05) rotateY(2deg);
    box-shadow: 0 25px 60px rgba(244, 121, 32, 0.15);
}

.sobre-text h2 {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

.sobre-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.sobre-text .destaque {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.diferenciais {
    list-style: none;
    margin-top: 30px;
}

.diferenciais li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
}

.diferenciais li:hover {
    background: rgba(244, 121, 32, 0.08);
    transform: translateX(10px);
}

.diferenciais li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.4rem;
    min-width: 25px;
    animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Seção Serviços */
#servicos {
    background: var(--white);
    position: relative;
}

#servicos h2 {
    animation: fadeInDown 1s ease-out;
    position: relative;
    margin-bottom: 60px;
}

#servicos h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ======= Carrossel Hero ======= */
.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
}
.hero-carousel .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-carousel .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.hero-carousel .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.6), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
}
.hero-carousel .overlay .container {
    color: var(--white);
}
.hero-carousel h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero-carousel p { font-size: 1.1rem; margin-bottom: 18px; }

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: var(--white);
    border: none;
    width: 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 3;
}
.carousel-control:hover { transform: scale(1.05); background: rgba(0,0,0,0.5); }
.carousel-control.prev { left: 18px; }
.carousel-control.next { right: 18px; }

.indicators {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    display: flex;
    gap: 10px;
    z-index: 4;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.indicator.active { background: linear-gradient(90deg,var(--primary-color),var(--accent-color)); transform: scale(1.15); }

/* Ajustes responsivos */
@media (max-width: 900px) {
    .header-right {
        gap: 18px;
        margin-right: 3.5rem;
    }
    .desktop-nav {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        padding: min(20vh, 10rem) 2em;
        background: hsla(0, 0%, 10%, 0.9);
        backdrop-filter: blur(1rem);
        transform: translateX(100%);
        transition: transform 350ms ease-out;
        z-index: 1999;
    }
    .desktop-nav[data-visible="true"] {
        transform: translateX(0%);
    }
    header nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    header nav a {
        font-size: 1.5rem;
    }
    img.logo { height: 100px; }
}

@media (max-width: 600px) {
    .hero-carousel { height: 56vh; min-height: 320px; }
    .hero-carousel h2 { font-size: 1.9rem; }
    .hero-carousel p { font-size: 0.98rem; }
    .carousel-control { width: 42px; height: 52px; font-size: 1.4rem; }
}


.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servico-item {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.servico-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%; 
    background: radial-gradient(circle, rgba(244, 121, 32, 0.08) 0%, transparent 70%);
    transition: all 0.4s ease;
    z-index: 0;
}

.servico-item:hover::before {
    top: -25%;
    right: -25%;
    transform: scale(1.5);
}

.servico-item > * {
    position: relative;
    z-index: 1;
}

.servico-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 45px rgba(244, 121, 32, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 121, 32, 0.02) 100%);
}

.servico-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.servico-item:hover i {
    transform: scale(1.2) rotateY(10deg);
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(244, 121, 32, 0.4));
}

.servico-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.servico-item:hover h3 {
    color: var(--accent-color);
}

.servico-item p {
    color: var(--text-color);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.servico-item:hover p {
    color: var(--secondary-color);
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px; 
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.15), rgba(232, 93, 4, 0.15));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.servico-item:hover .servico-icon {
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.25), rgba(232, 93, 4, 0.25));
    transform: scale(1.15) rotate(-5deg);
}

.servico-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.servico-item:hover .servico-badge {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 121, 32, 0.25);
}

/* Seção Galeria */
#galeria {
    background: var(--light-gray);
}

#galeria h2 {
    animation: fadeInDown 1s ease-out;
    position: relative;
    margin-bottom: 15px;
}

#galeria .subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-color);
    animation: fadeInUp 1.2s ease-out;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease-out;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    cursor: pointer;
    height: 280px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.galeria-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 45px rgba(244, 121, 32, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--white);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 35px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(244, 121, 32, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Seção Depoimentos */
#depoimentos {
    background: var(--white);
    position: relative;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.depoimento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.depoimento-item .stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.depoimento-item p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.depoimento-item h4 {
    color: var(--secondary-color);
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.depoimento-item span {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Ícone de aspas decorativo */
.depoimento-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(0,0,0,0.05);
    font-family: serif;
}

/* Seção FAQ */
#faq {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

details {
    background: var(--light-gray);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

details[open] {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

summary {
    padding: 20px;
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    list-style: none; /* Remove a seta padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none; /* Remove a seta padrão no Chrome/Safari */
}

summary::after {
    content: '\f067'; /* Ícone '+' do Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '\f068'; /* Ícone '-' do Font Awesome */
    transform: rotate(180deg);
}

details p {
    padding: 0 20px 20px 20px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Seção Contato */
#contato {
    background: var(--light-gray); /* Alterado para contrastar com depoimentos */
    position: relative;
}

.contato-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contato-info {
    flex: 1;
    animation: fadeInLeft 1.2s ease-out;
}

.contato-info h3 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
}

.contato-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contato-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}
.contato-info .endereco-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-top: 20px;
}

.contato-info .endereco-info i {
    color: var(--primary-color);
}

.map-container {
    flex: 1;
    height: 400px;
}

/* Estilos para área de redes sociais na seção de contato */
.contato-social {
    display: flex;
    gap: 22px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 26px;
}
.contato-social a {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center; 
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.12), rgba(232, 93, 4, 0.08));
    color: var(--secondary-color);
    font-size: 1.6rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.contato-social a:hover {
    transform: translateY(-6px) scale(1.03); 
    box-shadow: 0 10px 30px rgba(244, 121, 32, 0.12);
    color: var(--primary-color);
}

/* Rodapé */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer p {
    margin: 0;
    font-weight: 500;
}

/* Animações Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animações ao Scroll (usando Intersection Observer) */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Responsividade para Dispositivos Móveis */
@media (max-width: 768px) {
    h2 {
        font-size: 2.2rem;
    }

    #inicio {
        padding: 100px 0;
    }

    #inicio h2 {
        font-size: 2.5rem;
    }

    #inicio p {
        font-size: 1.1rem;
    }

    #sobre {
        padding: 40px 0;
    }

    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }

    .sobre-text h2, 
    .sobre-text p, 
    .sobre-text .destaque {
        text-align: center;
    }

    .sobre-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #servicos {
        padding: 40px 0;
    }

    #galeria {
        padding: 40px 0;
    }

    .galeria-grid {
        gap: 15px;
    }

    .galeria-item {
        height: 220px;
    }

    #depoimentos {
        padding: 40px 0;
    }

    #faq {
        padding: 40px 0;
    }

    summary {
        font-size: 1.2rem;
    }

    #servicos h2::after {
        width: 60px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servico-item {
        padding: 25px;
    }

    #contato {
        padding: 40px 0 100px 0;
    }

    .contato-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contato-info h3::after {
        left: 0;
        transform: none;
    }

    .contato-info h3,
    .contato-info p {
        text-align: center;
    }

    .contato-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contato-social {
        justify-content: center;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    section {
        padding: 40px 0;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Lightbox responsivo */
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 32px;
        top: -45px;
        right: -5px;
    }

    .lightbox-caption {
        font-size: 0.95rem;
    }
}

/* Estilos Adicionais para Melhor Experiência */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Firefox */
* {
    scrollbar-color: var(--primary-color) #f1f1f1;
    scrollbar-width: thin;
}

/* Efeito de Parallax suave */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Animação do Logo no Footer */
.footer-logo-anim {
    animation: blinkLogo 1.5s infinite ease-in-out;
}

@keyframes blinkLogo {
    0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 2px rgba(244, 121, 32, 0.3)); }
    50% { opacity: 0.9; transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(244, 121, 32, 0.8)); }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}
