/* ========================= */
/* 1. RESET & GLOBAL STYLES */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f5f7fa !important;
    color: #1f2937 !important;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

/* ========================= */
/* 2. HEADER PREMIUM */
/* ========================= */

#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s ease;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

#header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.08)),
        linear-gradient(to bottom, rgba(0,0,0,0.06), transparent);
}

#header.scrolled {
    background: #ffffff !important;
}

/* CONTAINER */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
}

/* LOGO */
.logo img {
    height: 85px;
    transition: 0.4s ease;
}

#header.scrolled .logo img {
    height: 60px;
}

/* MENU */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin-top: 10px;
}

/* LINKS */
.nav-links a {
    color: #555 !important;
    text-decoration: none;
    font-weight: 600 !important;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0077cc !important;
}

/* LINHA ANIMADA */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: linear-gradient(90deg, #0077cc, #005fa3) !important;
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #fff;
    text-shadow: 0 0 8px rgba(0,170,255,0.6);
}

/* BOTÃO MOBILE */
.menu-toggle {
    display: none;
    color: rgb(0, 110, 255);
    font-size: 28px;
    cursor: pointer;
}

/* RESPONSIVO HEADER */
@media (max-width: 768px) {
    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .logo img {
        height: 50px;
        margin-top: 5px;
    }

    #header.scrolled .logo img {
        height: 35px;
    }
}

/* ========================= */
/* 3. BANNER */
/* ========================= */

.banner {
    min-height: 75vh;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

.banner::before {
    display: none;
}



/* CONTEÚDO */
.banner-content {
    transform: translateY(80px) !important;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.banner-content h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.banner-content h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #0077ff);
    display: block;
    margin: 20px auto;
}

.banner-sub {
    color: #e5e7eb;
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

/* BOTÃO */
.btn-primary {
    background: linear-gradient(90deg, #0077cc, #005fa3) !important;
    color: #fff;
    padding: 0.8rem 2.2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,119,204,0.3) !important;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 35px rgba(0,119,204,0.4),
        0 5px 15px rgba(0,0,0,0.2) !important;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomBanner {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* RESPONSIVO BANNER */
@media (min-width: 769px) {
    .banner {
        margin-top: 100px;
        margin-bottom: 0;
        min-height: 75vh;
        align-items: center;
        justify-content: center;
    }

    .banner-content {
        transform: translateY(80px) !important;
    }
}

/* ========================= */
/* 4. HERO SPLIT - BANNER VARIANT */
/* ========================= */

.banner-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.banner-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.banner-left h1 span {
    color: #0077cc;
}

.banner-left .btn-primary {
    display: inline-block;
    margin-bottom: 40px;
}

/* STATS */
.banner-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.banner-stats div {
    display: flex;
    flex-direction: column;
}

.banner-stats strong {
    font-size: 1.8rem;
    color: #111827;
}

.banner-stats span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* RIGHT IMAGE */
.banner-right {
    position: relative;
}

.banner-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.banner-right img:hover {
    transform: scale(1.03);
}

.banner-right::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,119,204,0.2), transparent 70%);
    top: -50px;
    right: -50px;
    z-index: -1;
}

@media (max-width: 900px) {
    .banner-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-left {
        order: 2;
    }

    .banner-right {
        order: 1;
    }

    .banner-stats {
        justify-content: center;
    }
}

/* ========================= */
/* 5. SERVICES SECTION */
/* ========================= */

.services {
    background: #ffffff !important;
    color: #1f2937 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,170,255,0.08), transparent 70%);
    top: -150px;
    left: -150px;
}

/* TÍTULO */
.section-title {
    font-size: 2.6rem;
    margin-bottom: 80px;
    font-weight: 700;
    color: #111827 !important;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #0077cc, #005fa3) !important;
    display: block;
    margin: 12px auto;
}

.service-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-cards .card{
    grid-column: auto !important;
}

.service-cards .card {
    padding: 50px 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f9fbfd);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-cards .card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,119,204,0.08), transparent 60%);
    top: -50%;
    left: -50%;
    transition: 0.5s;
}

.service-cards .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.service-cards .card:hover::before {
    top: -30%;
    left: -30%;
}

.service-cards .card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-cards .card p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.service-cards .btn-service {
    display: inline-block;
    padding: 10px 22px;
    font-size: 0.9rem;
    border-radius: 25px;
    border: 1px solid #0077cc;
    color: #0077cc;
    transition: 0.3s;
    position: relative;
    z-index: 9999;
}   

.service-cards .btn-service:hover {
    background: #0077cc;
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.card:nth-child(1),
.card:nth-child(2),
.card:nth-child(3) {
    grid-column: span 2;
}

.card:nth-child(4) {
    grid-column: 2 / span 2;
}

.card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* CARD */
.card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 18px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #0077cc !important;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.15),
        0 10px 25px rgba(0,119,204,0.15) !important;
}

/* ÍCONE */
.icon svg {
    width: 45px;
    height: 45px;
    color: #0077cc !important;
    margin-bottom: 15px;
}

/* TÍTULO */
.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card h3::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #0077cc !important;
    display: block;
    margin: 8px auto;
}

/* TEXTO */
.card p {
    color: #4b5563 !important;
    font-size: 0.95rem;
}

/* BOTÃO SERVIÇO */
.btn-service {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #0077cc;
    border: 1px solid #0077cc;
    border-radius: 20px;
    transition: 0.3s ease;
}

.btn-service:hover {
    background: #0077cc;
    color: #fff;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 500px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .btn-service {
        display: block;
        margin: 15px auto 0;
        text-align: center;
    }
}

/* ========================= */
/* 6. GALLERY SECTION */
/* ========================= */

.gallery-item-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.4s;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}



/* RESPONSIVO */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* 7. TESTIMONIALS SECTION */
/* ========================= */

.testimonials {
    background: #ffffff !important;
    color: #1f2937 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}

.testimonials::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,170,255,0.08), transparent 70%);
    top: -200px;
    right: -150px;
}

/* SLIDER */
.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
}

/* CARD */
.testimonial {
    background: #f9fafb !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: 0.6s ease;
    position: absolute;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    position: relative;
}

.testimonial:hover {
    border-color: #0077cc !important;
    box-shadow: 0 10px 30px rgba(0,119,204,0.2) !important;
}

/* TEXTO */
.testimonial p {
    font-size: 1.1rem;
    color: #4b5563 !important;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* AUTOR */
.testimonial h4 {
    font-weight: 500;
    color: #0077cc !important;
}

/* ========================= */
/* 8. CONTACT SECTION */
/* ========================= */

.contact {
    background: #f5f7fa !important;
    color: #1f2937 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,170,255,0.08), transparent 70%);
    bottom: -200px;
    left: -150px;
}

/* LAYOUT CENTRALIZADO */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* FORM */
.contact form {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

/* INPUTS */
.contact input,
.contact textarea {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #ddd !important;
    background: #ffffff !important;
    color: #333 !important;
    outline: none;
    transition: 0.3s;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #aaa;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #0077cc !important;
    box-shadow: 0 0 10px rgba(0,119,204,0.2) !important;
}

/* TEXTAREA */
.contact textarea {
    min-height: 120px;
    resize: none;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.contact-info p {
    color: #555 !important;
    line-height: 1.6;
}

.contact-info strong {
    color: #0077cc !important;
    font-weight: 500;
}

#btn-message {
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .contact form {
        padding: 25px;
    }
}

/* ========================= */
/* 9. PROMO PAGE */
/* ========================= */

.promo-page {
    background: #ffffff !important;
    text-align: center;
    padding-top: 3rem;
}

.promo-full {
    max-width: 900px;
    margin: 40px auto 0;
}

.promo-full img {
    width: 70%;
    border-radius: 20px;
    opacity: 0.9;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.promo-full img:hover {
    opacity: 1;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .promo-page {
        padding-top: 1.5rem;
    }

    .promo-full img {
        width: 100%;
        border-radius: 14px;
    }
}

/* ========================= */
/* 10. FLOATING ACTION BUTTONS */
/* ========================= */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5) !important;
    z-index: 9999;
    animation: floatSoft 3s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float img {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    animation: none;
}

/* EMAIL */
.email-float {
    position: fixed;
    bottom: 130px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0077cc;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: floatSoft 3s ease-in-out infinite;
    transition: 0.3s;
}

.email-float img {
    width: 20px;
    height: 20px;
}

.email-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    animation: none;
}

/* INSTAGRAM */
.instagram-float {
    position: fixed;
    bottom: 75px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: floatSoft 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-float img {
    width: 22px;
    height: 22px;
}

.instagram-float:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* FACEBOOK */
.facebook {
    position: fixed;
    bottom: 187px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1877F2, #0d5ed7);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: floatSoft 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    animation: none;
}

.facebook-float {
    position: fixed;
    bottom: 187px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1877F2, #0d5ed7);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: floatSoft 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ANIMAÇÃO PULSE */
@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.facebook i {
    transform: scale(1.1);
}

/* RESPONSIVO DESKTOP */
@media (max-width: 768px) {
    .floating-buttons {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }

    .email-float {
        padding: 14px;
        border-radius: 50%;
    }

    .email-float span {
        display: none;
    }

    .instagram-float {
        padding: 14px;
        border-radius: 50%;
    }

    .instagram-float span {
        display: none;
    }

    .facebook {
        position: static;
        padding: 14px;
        border-radius: 50%;
    }

    .facebook span {
        display: none;
    }

    .facebook-float {
        position: static;
    }
}

/* FLOATING BUTTON GENÉRICO */
.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* ========================= */
/* 11. FAB MENU - MOBILE */
/* ========================= */

.fab-menu {
    display: none;
}

@media (max-width: 768px) {
    .fab-menu {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999999;
        display: block;
    }

    .fab-toggle {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #0077cc, #005fa3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        transition: 0.3s;
    }

    .fab-toggle.active {
        transform: rotate(45deg);
    }

    .fab-items {
        position: absolute;
        bottom: 70px;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: 0.3s ease;
    }

    .fab-menu.active .fab-items {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .fab-item {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fab-menu.active .fab-item {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .fab-menu.active .fab-item:nth-child(1) {
        transition-delay: 0.05s;
    }

    .fab-menu.active .fab-item:nth-child(2) {
        transition-delay: 0.1s;
    }

    .fab-menu.active .fab-item:nth-child(3) {
        transition-delay: 0.15s;
    }

    .fab-menu.active .fab-item:nth-child(4) {
        transition-delay: 0.2s;
    }

    .fab-item:hover {
        transform: scale(1.1);
    }

    .whatsapp { background: #25D366; }
    .instagram { background: #E1306C; }
    .email { background: #0077cc; }
    .facebook { background: #1877F2; }

    .fab-items {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ========================= */
/* 12. FOOTER */
/* ========================= */

footer {
    background: #ffffff !important;
    color: #777 !important;
    text-align: center;
    padding: 25px 10px;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
}

footer p {
    font-size: 0.9rem;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 120px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ========================= */
/* 13. GLOBAL STYLES */
/* ========================= */

section {
    padding: 7rem 2rem;
    scroll-margin-top: 120px;
}

section:not(:last-child)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    margin: 60px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,0,0,0.15),
        transparent
    ) !important;
}

/* GLOBAL VIGNETTE EFFECT */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,0.12) 100%
    );
}

.highlight {
    color: #0077cc !important;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,119,204,0.2);
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 90px;
    }

    .btn-service {
        display: block;
        margin: 15px auto 0;
        text-align: center;
    }
}

/* ========================= */
/* 14. REMODELING PAGE */
/* ========================= */

.remodeling-title {
    color: #111827;
}

.remodeling-banner {
    margin-top: 150px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.remo-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.remo-banner-content h2,
.remo-banner-content p,
.remo-banner-content a {
    margin: 0;
}

.remo-banner-sub {
    max-width: 500px;
    line-height: 1.5;
    color: #4b5563;
}

.remodeling-gallery {
    text-align: center;
}

.remodeling-gallery h2 {
    margin-top: -12rem;
}

.remo-contact {
    text-align: center;
}

.remo-contact h2 {
    margin-top: -2rem;
}

/* DESTAQUE DE PARÁGRAFOS NO REMODELING */
.remodeling-text {
    background: rgba(0, 119, 204, 0.06) !important;
    border-left: 4px solid #0077cc;
    padding: 20px 25px;
    border-radius: 8px;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    color: #4b5563;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 119, 204, 0.08);
}

@media (max-width: 900px) {
    .remodeling-banner {
        padding: 20px 20px 40px;
    }

    .remodeling-text {
        padding: 15px 20px;
        font-size: 1rem;
    }
}



/* ========================= */
/* 15. CONTACT PAGE */
/* ========================= */

.contact {
    margin-top: 100px;
}

@media (max-width: 768px) {
    #contact {
        margin-top: 0;
    }
}

.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-slide img {
  width: auto;
  max-width: 100%;
  max-height: 460px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  object-fit: contain;
}

.swiper-slide img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .swiper-slide img {
    max-height: 360px;
  }
}

