/* ======= RESET E CONFIGURAÇÕES BASE ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #e5e5e5;
    --accent-gold: rgb(211, 174, 78);
    --light-gold: rgb(10, 93, 43);
    --dark-green: rgb(10, 93, 43);
    --text-white: #ffffff;
    --text-light: #e5e5e5;
    --text-gray: #b3b3b3;
    --background-dark: #141414;
    --card-dark: rgb(10, 93, 43);
    --hover-overlay: rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    width: 100%;
    max-width: 100%;
}

/* ======= NAVBAR DINÂMICA MELHORADA ======= */
.apple-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.apple-header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.apple-header.scrolled .header-logo {
    color: #1e4d3f;
}

.header-logo img {
    height: 55px;
    margin-right: 8px;
}

.header-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.header-menu a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.apple-header.scrolled .header-menu a {
    color: #1d1d1f;
}

.header-menu a:hover {
    color: rgba(10, 93, 43, 0.29);
    background: ;
    transform: translateY(-2px);
}
rgba(10, 93, 43, 0.35)
.apple-header.scrolled .header-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.header-menu a.active {
    color: "#ffffff";
    background: rgba(10, 93, 43, 0.29);
}

.apple-header.scrolled .header-menu a.active {
    background: rgba(10, 93, 43, 0.29);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ======= MENU HAMBÚRGUER COM SETA ======= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1d1d1f;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(10, 93, 43, 0.29);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(180deg);
}

.apple-header.scrolled .mobile-menu-toggle {
    color: #1d1d1f;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    padding: 1rem 2rem;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: rgba(10, 93, 43, 0.29);
    color: rgba(10, 93, 43, 0.29);
    padding-left: 2.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======= HERO SLIDER ======= */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background: transparent;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    border-radius: 0px;
    transition: transform 0.3s ease;
    display: block;
}

/* ======= SERVICES SECTION ORGANIZADA ======= */
.services-section {
    padding: 4rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.service-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 300px;
    width: 350px;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: all 0.3s ease;
}

.service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.service-title h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ======= BUTTONS ======= */
.btn-primary {
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold));
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

/* ======= WHATSAPP BUTTON ======= */
.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: 13px;
    color: white;
}

.btn-whatsapp span {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.apple-header.scrolled .btn-whatsapp {
    background: #25d366;
    color: white;
}


/* ======= PHONE BUTTON ======= */
.btn-liguem-me-styled {
    background: rgba(12, 130, 59, 0.74);
    color: white;
    border: none;
    padding: 8px 16px 8px 8px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    min-width: 140px;
    justify-content: flex-start;
}

.phone-icon-circle {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-icon-circle i {
    color: white;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.phone-number-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-liguem-me-styled:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-liguem-me-styled:hover .phone-icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-liguem-me-styled:hover .phone-icon-circle i {
    transform: rotate(-10deg);
}

.btn-liguem-me-styled:hover .phone-number-text {
    color: white;
}

.apple-header.scrolled .btn-liguem-me-styled {
    background: #25d366;
    color: white;
}

.apple-header.scrolled .btn-liguem-me-styled:hover {
    background: #128c7e;
    color: white;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--dark-green);
    padding: 3rem 2rem 1rem;
    margin-top: 0rem;
    border-top: 2px solid rgba(0, 0, 0, 0.3);
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--text-gray);
}

/* ======= FORM STYLES ======= */
input:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1) !important;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

input::placeholder,
textarea::placeholder {
    color: #adb5bd !important;
}

/* ======= ANIMAÇÕES DOS CARDS ======= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

.slide {
    will-change: opacity;
}

.header-menu a:focus,
.btn-apple:focus,
.btn-primary:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ======= RESPONSIVIDADE TABLET ======= */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        width: 100%;
        max-width: 350px;
    }
    
    .header-nav {
        padding: 0 1.5rem;
    }
}


/* ======= RESPONSIVIDADE MOBILE ======= */
@media (max-width: 768px) {
    /* === GERAL === */
    body, html {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-top: 0;
    }
    
    * {
        max-width: 100% !important;
    }
    
    /* === NAVBAR === */
    .apple-header {
        height: 70px;
        width: 100% !important;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .header-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-nav {
        padding: 0 1rem !important;
        justify-content: space-between;
        width: 100% !important;
    }
    
    .header-logo img {
        height: 45px;
    }
    
    /* === HERO SLIDER === */
    .hero-slider {
        height: calc(100vh - 70px) !important;
        margin-top: 70px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .slider-container,
    .slider-track,
    .slide,
    .slide-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .slide-image {
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* === SECTIONS === */
    section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* === SERVICES MOBILE === */
    .services-section {
        padding: 2rem 0;
        width: 100% !important;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        max-width: 100%;
        margin: 0;
        padding: 0 70px 0 70px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        width: 100% !important;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        flex: 0 0 280px;
        width: 280px;
        max-width: none;
        height: 300px;
        margin: 0 1rem;
        scroll-snap-align: start;
    }
    
    /* === SETAS DE NAVEGAÇÃO === */
    .arrow-left,
    .arrow-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 100;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        opacity: 0.8;
    }
    
    .arrow-left {
        left: 15px;
    }
    
    .arrow-right {
        right: 15px;
    }
    
    .arrow-left:hover,
    .arrow-right:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .arrow-left i,
    .arrow-right i {
        color: var(--dark-green);
        font-size: 1.1rem;
    }
    
    .arrow-left.hidden,
    .arrow-right.hidden {
        opacity: 0;
        pointer-events: none;
    }
    
    /* === BOTÕES === */
    .btn-whatsapp {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 16px;
        gap: 6px;
    }
    
    .btn-liguem-me-styled {
        padding: 6px 12px 6px 6px;
        font-size: 13px;
        border-radius: 20px;
        min-width: 120px;
        gap: 8px;
    }
    
    .phone-icon-circle {
        width: 24px;
        height: 24px;
    }
    
    .phone-icon-circle i {
        font-size: 11px;
    }
    
    .phone-number-text {
        font-size: 13px;
    }
    
    /* === CONTACTO === */
    .contact-section > div > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-section h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-section {
        padding: 2rem 1rem !important;
        width: 100% !important;
    }
    
    .contact-section > div > div:last-child > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-section > div > div:last-child {
        padding: 2rem !important;
    }
}

/* ======= RESPONSIVIDADE MOBILE SMALL ======= */
@media (max-width: 480px) {
    .apple-header {
        height: 60px;
    }
    
    .mobile-menu {
        top: 60px;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .mobile-menu-list a {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-slider {
        height: calc(100vh - 60px) !important;
        margin-top: 60px !important;
    }
    
    .btn-whatsapp {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 14px;
        gap: 4px;
    }
    
    .btn-liguem-me-styled {
        padding: 5px 10px 5px 5px;
        font-size: 12px;
        border-radius: 18px;
        min-width: 100px;
        gap: 6px;
    }
    
    .phone-icon-circle {
        width: 22px;
        height: 22px;
    }
    
    .phone-icon-circle i {
        font-size: 10px;
    }
    
    .phone-number-text {
        font-size: 12px;
    }
}

/* ======= RESPONSIVIDADE MOBILE EXTRA SMALL ======= */
@media (max-width: 360px) {
    .btn-liguem-me-styled {
        min-width: auto;
        padding: 5px 8px 5px 5px;
    }
    
    .phone-number-text {
        display: none;
    }
    
    .phone-icon-circle {
        margin-right: 0;
    }
    
    .services-grid {
        padding: 0 50px 0 50px;
    }
    
    .arrow-left {
        left: 10px;
    }
    
    .arrow-right {
        right: 10px;
    }
}

/* ======= DESKTOP ONLY ======= */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .header-menu {
        display: flex !important;
    }
    
    .arrow-left,
    .arrow-right {
        display: none !important;
    }
}
/* Botão Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-toggle.active i {
    transform: rotate(180deg);
}

/* Menu Mobile Dropdown */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(10, 93, 43, 0.37);
    color: rgba(10, 93, 43, 0.29);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
}
/* Botão WhatsApp fixo no canto inferior esquerdo */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: rgb(10, 93, 43);
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin: 0;
    line-height: 1;
}

/* Responsivo para dispositivos móveis */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
        font-size: 25px;
    }
}
.services-header {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: 3.5rem;
    margin-right: auto;
}

.services-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #141414;
    margin: 0 0 0.5rem 0;
}

.services-header p {
    font-size: 1.1rem;
    color: #3d423b;
    margin: 0;
}