/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light */
	
}

:root {
    --primary-color: #2c3e50; /* Cinza com tom de azul */
    --secondary-color: #fb5900; /* Roxo escuro */
    --btn-color:#fc5900; /* Cinza com tom de azul */
    --btn-hover-color: #fd8a00; /* Roxo claro */
    --accent-color: #fd8a00; /* Azul quase roxo */
	--line-color: #ffbb00;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --max-width: 1200px;
}
.tutorial_link.--custom-branding{
    display: none !important;
}
a.tutorial_link.--custom-branding{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
.item-center{
    align-items: center;
}
.flex{
    display: flex;
}
.gap-1{
    gap: .5rem;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: var(--white);
    overflow-x: hidden;
}
.brand-logo{
    display:flex;
    align-items:center;
    gap:0;
    text-decoration:none;
}

.brand-symbol{
    width:auto;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none !important;
    overflow:visible;
}

.brand-symbol img{
    height:60px; /* mesmo tamanho original */
    width:auto;
    display:block;

    filter:
        brightness(0)
        saturate(100%)
        invert(58%)
        sepia(48%)
        saturate(646%)
        hue-rotate(6deg)
        brightness(92%)
        contrast(90%);
}

.brand-text{
    display:flex;
    align-items:center;
    margin-left:16px; /* aproxima do L */
}

.brand-text img{
    height:28px;
    width:auto;
    display:block;


}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 10px;

}
/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.container-nav{
    height: 80px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links span {
  background-color: #2c3e50;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 0;
}


.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.15rem;
    font-weight: 550;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
	
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Botão do menu */
.nav-links .btncustomer a {
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  padding: 6px 14px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  
  z-index: 0; /* keep stacking context */
}
.btncustomer a{
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-links .btncustomer a > span,
.nav-links .btncustomer a * {
  position: relative;
  z-index: 2;
}

.nav-links .btncustomer a::after {
  display: none;
  content: none;
}

.nav-links .btncustomer a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  transform: translateX(-180%);
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
  filter: blur(6px);
  opacity: 0.3;
}

.nav-links .btncustomer a:hover::before {
  transform: translateX(250%);
  opacity: 0.9;
}

.nav-links .btncustomer a:hover {
  background: var(--btn-hover-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.nav-links .btncustomer a:hover::before {
  transform: translateX(250%);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(218, 143, 57, 0.253), rgba(40, 143, 212, 0.39)),
                url('../assets/Carrocel0101.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.carousel-slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(231, 77, 60, 0.342), rgba(52, 152, 219, 0.411)),
                url('../assets/Carrocel0202.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(202, 151, 41, 0.342), rgba(52, 172, 219, 0.411)),
                url('../assets/Carrocel0303.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

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

.indicator.active,
.indicator:hover {
    background: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--btn-color);
    color: white;
    text-decoration: none;
	font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--btn-hover-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.btn-Request {
    border-radius: 20px;
}
.btn-cliente {
    width: 50%;
    height: 35%;
    position: relative;
	font-size: clamp(1rem, 2vw, 1.3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.25rem;
    margin-left: 8rem;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(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);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #e9ecef;
}

.section-title {
    text-align: left;
    font-size: clamp(2rem, 4vw, 2rem);
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
	display: inline-block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--line-color), var(--accent-color));
    border-radius: 2px;
	position: relative;
	top: -10px;
	left: 20px;
}

.section-title span {
  background-color: #fc5900; 
  color: #fff;
  padding: 0px 10px;
  border-radius: 4px;
  display: inline-block;
  
}

ul li .section-title span {
    background-color: #fc5900;
    color: #fff;
    padding: 0px 10px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease; /* garante animação suave */
}
/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
	position: relative;
	top: -100px;
}

.stats .stat-item:last-child:nth-child(odd) {
    grid-column: 1 / -1; 
    justify-self: center;
    max-width: 50%; 
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-icon {
  width: 48px;
  text-align: center;
  height: 48px;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

svg {
  font-family: initial !important;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--dark-gray);
    font-weight: 600;
}

.about-image {
    background: var(--medium-gray);
    height: 450px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
    position: relative;
}
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: var(--transition);
}

.service-card:hover .service-image::after {
    background: rgba(52, 152, 219, 0.1);
}
.service-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #17191b;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.service-card:nth-child(1) .service-image {
    background-image: url('../assets/Carpentry.webp');
}

.service-card:nth-child(2) .service-image {
    background-image: url('../assets/Cleaning.webp');
}

.service-card:nth-child(3) .service-image {
    background-image: url('../assets/Flooring.jpeg');
}

.service-card:nth-child(4) .service-image {
    background-image: url('../assets/Fences.webp');
}

.service-card:nth-child(5) .service-image {
    background-image: url('../assets/Painting.webp');
}

.service-card:nth-child(6) .service-image {
    background-image: url('../assets/Masonry.webp');
}

.service-card:nth-child(7) .service-image {
    background-image: url('../assets/Paving.webp');
}

.service-card:nth-child(8) .service-image {
    background-image: url('../assets/Siding.jpeg');
}

.service-card:nth-child(9) .service-image {
    background-image: url('../assets/Restoration.webp');
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--medium-gray);
    height: 280px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 1rem;
    color: #ccc;
}

/* Feedback Section */
.feedback-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.feedback-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.feedback-card.active {
    display: block;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.feedback-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.feedback-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feedback-service {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.feedback-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.feedback-prev,
.feedback-next {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.feedback-prev:hover,
.feedback-next:hover {
    background: var(--btn-hover-color);
    transform: scale(1.1);
}

/* Contact Section */
#contact{
    padding: 100px 0;
    background:var(--white);
}
.contact-wrapper{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    margin-top: 50px;
}
.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}
.contact-info p{
    color:black;
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-content {	
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
	padding: 0.5rem;
    grid-template-columns: 1fr 1fr;

}

.contact-form-container {
    background: var(--medium-gray);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.08);
}
.form-section {
    margin-bottom: 15px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.full-width {
    grid-column: span 2;
}
.form-section h4 {
    color: #fc5900;
    margin-bottom: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group label {
    margin-bottom: 8px;
    color: #fff;
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: var(--light-gray);
    color: #000;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #fc5900;
    box-shadow: 0 0 0 3px rgba(252, 89, 0, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}
.btn-submit {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    background: #fc5900;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #ff6f1f;
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(252,89,0,.25);
}
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.customer-content{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-top: 3rem;
	font-size: 1.2rem;
    line-height: 1.8;
}
.customer-info p {
  margin-bottom: 1.2rem; /* Espaço entre o parágrafo e a lista */
}
.customer-info ul li {
  margin-bottom: 0.1rem; /* Espaço entre os itens da lista */
}
/* Footer */
footer {
    background: #2c3e50;
    color: rgb(231, 231, 231);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--medium-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 6rem;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgb(231, 231, 231);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}
.footer-contect{
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--btn-hover-color);
    transform: translateY(-3px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    .nav-links{
        gap: 1rem;
    }
    .nav-links a{
        font-size: 0.8rem;
        padding: 0.1rem 0;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-links a {
        font-size: 20px;
    }
    .logo-img-link {
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-menu-btn span{
        background-color: #FB5900;
    }
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
     .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .full-width {
        grid-column: span 1;
    }

    .btn-cliente{
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        height: 100%;
    }
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .logo-img-link {
        justify-content: center;
    }
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .feedback-card {
        padding: 2rem 1.5rem;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Print Styles */
@media print {
    .nav-links,
    .carousel-indicators,
    .feedback-nav,
    .back-to-top,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: 200px;
    }
    
    section {
        padding: 20px 0;
        break-inside: avoid;
    }
}


/* =========================================================
   Premium white / cream / gold theme inspired by reference mockup
   Main page: index2.html
   ========================================================= */
:root{
  --primary-color:#1d2630;
  --secondary-color:#b9852d;
  --btn-color:#b9852d;
  --btn-hover-color:#94671f;
  --accent-color:#cfa45b;
  --line-color:#b9852d;
  --cream:#fbf8f1;
  --warm-white:#fffdf8;
  --ink:#17191b;
  --muted:#59626d;
  --gold:#b9852d;
  --soft-gold:#e5d0a7;
  --deep:#171717;
  --shadow:0 14px 40px rgba(26,31,38,.08);
  --shadow-hover:0 20px 55px rgba(26,31,38,.14);
  --border-radius:16px;
  --max-width:1480px;
}

html{scroll-behavior:smooth;}
body{
  background:linear-gradient(180deg,#ffffff 0%,#fbf8f1 48%,#ffffff 100%);
  color:var(--ink);
  font-family:'Montserrat',sans-serif;
  letter-spacing:-.01em;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background:
    radial-gradient(circle at 12% 18%, rgba(185,133,45,.16), transparent 28%),
    linear-gradient(120deg, transparent 0 48%, rgba(185,133,45,.05) 48% 50%, transparent 50% 100%);
  z-index:-1;
}
.container{max-width:1480px;padding:0 54px;}

header{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  box-shadow:0 1px 0 rgba(185,133,45,.18), 0 12px 35px rgba(0,0,0,.04);
}
.container-nav{height:92px;}
.brand-logo{
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
  color:var(--ink);
}
.brand-symbol{
  width:42px;height:54px;
  display:grid;place-items:center;
  color:var(--gold);
  font-size:35px;
  line-height:1;

  font-family:'Playfair Display',serif;
}
.brand-text{display:flex;flex-direction:column;line-height:1;}
.brand-text strong{
  font-family:'Playfair Display',serif;
  font-size:34px;
  font-weight:600;
  letter-spacing:.01em;
  text-transform:lowercase;
}
.brand-text small{
  color:var(--gold);
  letter-spacing:.32em;
  margin-left:2px;
  margin-top:8px;
  font-size:12px;
  font-weight:500;
}
.logo svg{display:none;}
.nav-links{gap:2.25rem;}
.nav-links a{
  color:#202832;
  font-size:1rem;
  font-weight:500;
  letter-spacing:.01em;
}
.nav-links a:hover,.nav-links a.active{color:var(--gold);}
.nav-links a::after{background:var(--gold);height:2px;}
.nav-links .btncustomer a{
  background:linear-gradient(135deg,#c69a52,#a87322);
  color:#fff;
  border-radius:5px;
  padding:12px 19px;
  box-shadow:0 8px 20px rgba(185,133,45,.22);
}
.nav-links .btncustomer a:hover{background:linear-gradient(135deg,#b9852d,#8e611d);}
.mobile-menu-btn span{background:var(--gold);}

.hero.hero-luxury{
  min-height:760px;
  height:auto;
  padding:128px 0 0;
  display:block;
  overflow:visible;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 42%, rgba(251,248,241,.42) 56%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg,#fff 0%,#fbf8f1 100%);
}
.hero-shell{
  display:grid;
  grid-template-columns:1.02fr 1.2fr;
  gap:40px;
  align-items:stretch;
  min-height:500px;
}
.hero-copy{
  padding:78px 0 48px;
  position:relative;
  z-index:3;
}
.hero-copy::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:40px;
  width:260px;height:260px;
  opacity:.13;
  border:1px solid rgba(185,133,45,.25);
  transform:skew(-8deg);
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:24px;
  color:var(--gold);
  font-weight:600;
  letter-spacing:.16em;
  font-size:.89rem;
  text-transform:uppercase;
  margin-bottom:25px;
}
.eyebrow::after{
  content:"";
  width:148px;height:1px;
  background:var(--gold);
  display:inline-block;
}
.eyebrow::before{
  content:"✦";
  order:2;
  color:var(--gold);
  font-size:14px;
  margin-left:-8px;
}
.hero h1{
  font-family:'Playfair Display',serif;
  color:#17191b;
  font-size:clamp(3.3rem,5.4vw,5.9rem);
  line-height:.96;
  font-weight:600;
  letter-spacing:-.045em;
  margin:0 0 26px;
  text-shadow:none;
  animation:none;
}
.hero h1 em{
  color:var(--gold);
  font-style:italic;
  font-weight:500;
}
.hero p{
  color:#28313d;
  max-width:640px;
  line-height:1.85;
  font-size:1.1rem;
  font-weight:400;
  margin-bottom:30px;
  text-shadow:none;
  animation:none;
}
.hero-actions{display:flex;gap:24px;align-items:center;flex-wrap:wrap;}
.btn{
  animation:none;
  border-radius:5px;
  padding:15px 28px;
  font-size:.95rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-weight:700;
  background:linear-gradient(135deg,#c69a52,#a87322);
  box-shadow:0 12px 24px rgba(185,133,45,.19);
}
.btn-Request{border-radius:5px;}
.btn-outline{
  background:rgba(255,255,255,.65);
  color:var(--gold);
  border:1px solid rgba(185,133,45,.65);
  box-shadow:none;
}
.btn-outline:hover{color:#fff;background:var(--gold);}
.hero-photo-card{
  position:relative;
  min-height:500px;
  overflow:visible;
  border-radius:0;
}
.hero-photo-card img{
  width:100%;
  height:100%;
  min-height:500px;
  object-fit:cover;
  object-position:center;
  display:block;
  filter:saturate(.82) brightness(1.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.4);
}
.hero-photo-card::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.75) 0%, rgba(255,255,255,.18) 26%, transparent 48%);
  z-index:1;
}
.hero-badge{
  position:absolute;
  right:46px;
  bottom:54px;
  width:175px;height:175px;
  border-radius:50%;
  background:rgba(255,253,248,.95);
  border:2px solid var(--gold);
  outline:7px solid rgba(255,255,255,.76);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#111;
  box-shadow:0 14px 34px rgba(0,0,0,.13);
  text-transform:uppercase;
}
.hero-badge span{font-size:27px;color:var(--gold);line-height:1;margin-bottom:6px;}
.hero-badge strong{font-size:15px;line-height:1.35;font-weight:500;}
.hero-badge b{font-size:15px;line-height:1.35;color:var(--gold);font-weight:700;}
.trust-strip{
  position:relative;
  z-index:6;
  margin-top:-58px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(185,133,45,.12);
  box-shadow:0 18px 48px rgba(0,0,0,.09);
  border-radius:8px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
}
.trust-item{
  display:grid;
  grid-template-columns:auto 1fr;
  grid-template-rows:auto auto;
  column-gap:18px;
  padding:25px 28px;
  align-items:center;
  border-right:1px solid rgba(185,133,45,.18);
}
.trust-item:last-child{border-right:0;}
.trust-item span{
  grid-row:1/3;
  color:var(--gold);
  font-size:42px;
  line-height:1;
  font-family:'Playfair Display',serif;
}
.trust-item strong{font-weight:700;color:#1c2025;font-size:1.02rem;}
.trust-item small{color:#303946;font-weight:400;line-height:1.5;font-size:.9rem;}

section{padding:90px 0;background:transparent!important;}
#about{padding-top:90px;background:#fff!important;}
.section-title{
  font-family:'Playfair Display',serif;
  color:#17191b;
  font-size:clamp(2.2rem,3.6vw,3.1rem);
  font-weight:500;
  margin-bottom:2.1rem;
  text-transform:none;
}
.section-title span{
  background:transparent;
  color:var(--gold);
  padding:0;
  border-radius:0;
  font-family:'Playfair Display',serif;
  font-style:italic;
}
.section-title::after{
  width:120px;height:1px;background:var(--gold);top:-8px;left:18px;
}
.about-content{
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
}
.about-text{font-size:1.08rem;line-height:1.9;}
.about-text p{color:#4f5661;font-weight:400;}
.stats{
  top:0;
  margin-top:0;
  grid-template-columns:repeat(2, minmax(220px, 1fr));
  gap:22px;
}
.stats .stat-item:last-child:nth-child(odd){max-width:56%;}
.stat-item{
  border-radius:8px;
  box-shadow:0 18px 45px rgba(0,0,0,.07);
  border:1px solid rgba(185,133,45,.08);
  padding:38px 24px;
}
.stat-icon,.stat-iconstar{color:var(--gold)!important;}
.stat-item h3{
  color:#1d2630;
  font-family:'Playfair Display',serif;
  font-weight:500;
  font-size:1.55rem;
}
.stat-item p{font-weight:400;color:#56606b;}

#services{background:linear-gradient(180deg,#fbf8f1 0%,#fff 100%)!important;}
#services .section-title{margin-bottom:1rem;}
.services-grid{
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}
.service-card{
  border-radius:8px;
  box-shadow:none;
  border:1px solid rgba(185,133,45,.14);
  background:#fffdf8;
}
.service-card::before{background:var(--gold);height:2px;transform:scaleX(1);opacity:.45;}
.service-card:hover{transform:translateY(-6px);box-shadow:0 18px 42px rgba(0,0,0,.08);}
.service-image{height:165px;filter:saturate(.82);}
.service-content{text-align:left;padding:22px;}
.service-card h3{
    font-family: "Cormorant Garamond", serif !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    color: #17191b !important;
    margin-bottom: 12px !important;
}
.service-card p{color:#4e5661;font-weight:400;font-size:.95rem;}

#portfolio{background:#fff!important;}
.portfolio-item{border-radius:8px;box-shadow:var(--shadow);}
.portfolio-overlay{background:rgba(23,23,23,.78);}

#feedback{background:linear-gradient(180deg,#fbf8f1 0%,#fff 100%)!important;}
.feedback-card{
  border-radius:8px;
  border:1px solid rgba(185,133,45,.12);
  box-shadow:0 18px 45px rgba(0,0,0,.07);
}
.feedback-author{color:var(--gold);}
.feedback-prev,.feedback-next{background:var(--gold);}

#contact{
  background:#fff!important;
  padding-bottom:80px;
}
.contact-wrapper{
  background:linear-gradient(135deg,#fffdf8,#fbf8f1);
  border:1px solid rgba(185,133,45,.14);
  border-radius:10px;
  padding:38px;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
}
.contact-info h3{
  font-family:'Playfair Display',serif;
  color:var(--gold);
  font-weight:500;
  font-size:2rem;
}
.contact-info p{color:#3d4650;font-weight:400;}
.contact-form-container{
  background:#fff;
  border:1px solid rgba(185,133,45,.12);
  box-shadow:0 12px 35px rgba(0,0,0,.04);
}
.form-section h4{color:var(--gold);font-weight:700;}
.form-group input,.form-group select,.form-group textarea{
  background:#fffdf8;
  border:1px solid rgba(29,38,48,.18);
  border-radius:6px;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(185,133,45,.16);
}
.btn-submit{background:linear-gradient(135deg,#c69a52,#a87322);border-radius:6px;text-transform:uppercase;letter-spacing:.05em;}
.btn-submit:hover{background:linear-gradient(135deg,#b9852d,#8e611d);}

.customer-content{
  background:linear-gradient(90deg,#fffdf8 0%,#fbf8f1 100%);
  border:1px solid rgba(185,133,45,.12);
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  border-radius:10px;
  padding:34px;
}
footer{
  background:#181818;
  border-top:1px solid rgba(185,133,45,.45);
  color:#f3eee2;
  padding:38px 0;
}
.footer-section h4{color:#e5d0a7;font-family:'Playfair Display',serif;font-weight:500;}
.footer-section ul li a:hover{color:var(--gold);}
.back-to-top{background:#1d2630;box-shadow:0 8px 20px rgba(0,0,0,.18);}
.back-to-top:hover{background:var(--gold);}

/* Gallery placeholder photos using current assets */
.portfolio-item:nth-child(1){background:url('../assets/Carrocel0101.jpg') center/cover no-repeat;}
.portfolio-item:nth-child(2){background:url('../assets/Carrocel0202.jpg') center/cover no-repeat;}
.portfolio-item:nth-child(3){background:url('../assets/Paving.webp') center/cover no-repeat;}
.portfolio-item:nth-child(4){background:url('../assets/Restoration.webp') center/cover no-repeat;}
.portfolio-item:nth-child(5){background:url('../assets/Carpentry.webp') center/cover no-repeat;}
.portfolio-item:nth-child(6){background:url('../assets/Painting.webp') center/cover no-repeat;}

@media(max-width:1100px){
  .container{padding:0 24px;}
  .nav-links{gap:1.1rem;}
  .hero-shell{grid-template-columns:1fr;}
  .hero-copy{padding:48px 0 20px;}
  .hero-photo-card img{min-height:380px;}
  .trust-strip{grid-template-columns:repeat(2,1fr);margin-top:22px;}
  .trust-item:nth-child(even){border-right:0;}
  .about-content{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .container-nav{height:78px;}
  .brand-text strong{font-size:26px;}
  .brand-text small{font-size:9px;}
  .brand-symbol{width:30px;height:42px;font-size:26px;}
  .nav-links.active{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:78px;left:0;right:0;
    background:#fff;
    padding:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
  }
  .hero.hero-luxury{padding-top:96px;min-height:auto;}
  .hero h1{font-size:2.85rem;}
  .hero p{font-size:1rem;}
  .hero-badge{width:135px;height:135px;right:22px;bottom:24px;}
  .hero-badge strong,.hero-badge b{font-size:12px;}
  .trust-strip{grid-template-columns:1fr;}
  .trust-item{border-right:0;border-bottom:1px solid rgba(185,133,45,.16);}
  .stats{grid-template-columns:1fr;}
  .stats .stat-item:last-child:nth-child(odd){max-width:100%;}
  .contact-wrapper{padding:22px;}
  .section-title::after{display:none;}
}
@media(max-width:480px){
  .container{padding:0 16px;}
  .hero h1{font-size:2.35rem;}
  .hero-actions .btn{width:100%;text-align:center;}
  .hero-photo-card img{min-height:300px;}
  .hero-badge{display:none;}
  .trust-item{padding:20px;}
}


/* =========================================================
   FIX FINAL - Submit e Get In sem mover no hover
   Mantém o efeito premium do Customer Area, mas remove translateY
   dos botões .btn-submit e .btn-cliente.
   ========================================================= */

.btn-submit,
.btn-cliente {
    position: relative !important;
    overflow: hidden !important;
    transform: none !important;
    translate: none !important;
    top: auto !important;
    bottom: auto !important;
    will-change: box-shadow, background !important;
    background: linear-gradient(135deg,#c69a52,#a87322) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    box-shadow: 0 8px 20px rgba(185,133,45,.22) !important;
    transition: background .3s ease, box-shadow .3s ease, color .3s ease !important;
}

/* evita que o .btn:hover antigo mova o Get In */
.btn.btn-cliente:hover,
.btn-submit:hover,
.btn.btn-submit:hover {
    transform: none !important;
    translate: none !important;
    top: auto !important;
    bottom: auto !important;
    background: linear-gradient(135deg,#b9852d,#8e611d) !important;
    box-shadow: var(--shadow-hover) !important;
}

/* brilho estilo Customer Area */
.btn-submit::before,
.btn-cliente::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 40% !important;
    height: 100% !important;
    transform: translateX(-180%) !important;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent) !important;
    transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .5s ease !important;
    pointer-events: none !important;
    z-index: 1 !important;
    filter: blur(6px) !important;
    opacity: .3 !important;
}

.btn-submit:hover::before,
.btn-cliente:hover::before {
    transform: translateX(250%) !important;
    opacity: .9 !important;
}

/* mantém o texto acima do brilho */
.btn-submit > *,
.btn-cliente > * {
    position: relative !important;
    z-index: 2 !important;
}

/* remove animação fadeInUp herdada no submit/get in, que também usa transform */
.btn-submit,
.btn-cliente {
    animation: none !important;
}

/* =========================================================
   Lumna premium CTA strip - between Get In Touch and Customer Area
   ========================================================= */
.lumna-cta-strip{
    padding:0 !important;
    background:linear-gradient(90deg,#fffdf8 0%,#fbf8f1 50%,#ffffff 100%) !important;
    border-top:1px solid rgba(185,133,45,.14);
    border-bottom:1px solid rgba(185,133,45,.18);
}

.lumna-cta-strip-inner{
    min-height:94px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1.75fr 1.35fr;
    align-items:center;
    gap:0;
    padding-top:18px;
    padding-bottom:18px;
}

.lumna-cta-item,
.lumna-cta-message,
.lumna-cta-contact{
    min-height:58px;
    display:flex;
    align-items:center;
    padding:0 28px;
    border-right:1px solid rgba(185,133,45,.22);
}

.lumna-cta-item:first-child{
    padding-left:0;
}

.lumna-cta-contact{
    border-right:none;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:8px;
    padding-right:0;
}

.lumna-cta-icon{
    width:44px;
    height:44px;
    margin-right:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    flex-shrink:0;
}


.lumna-cta-icon svg{
    width:38px;
    height:38px;
    display:block;
}

.lumna-sparkle{
    font-family:'Playfair Display',serif;
    font-size:46px;
    line-height:1;
    color:var(--gold);
}

.lumna-cta-text{
    color:#17191b;
    font-size:.98rem;
    line-height:1.45;
    font-weight:600;
    letter-spacing:-.01em;
}

.lumna-cta-message{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}

.lumna-cta-message strong{
    color:var(--gold);
    font-size:1.08rem;
    font-weight:700;
    line-height:1.35;
    margin-bottom:3px;
}

.lumna-cta-message span{
    color:#343b44;
    font-size:.95rem;
    font-weight:400;
}

.lumna-cta-contact a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#17191b;
    text-decoration:none;
    font-size:.95rem;
    line-height:1;
}

.lumna-cta-contact a span{
    color:#17191b;
    width:18px;
    display:inline-flex;
    justify-content:center;
    font-size:1.05rem;
}

.lumna-cta-contact a strong{
    font-weight:700;
}

@media(max-width:1100px){
    .lumna-cta-strip-inner{
        grid-template-columns:repeat(2,1fr);
        row-gap:0;
    }

    .lumna-cta-item,
    .lumna-cta-message,
    .lumna-cta-contact{
        border-right:none;
        border-bottom:1px solid rgba(185,133,45,.16);
        padding:18px 20px;
    }

    .lumna-cta-contact{
        border-bottom:none;
    }
}

@media(max-width:640px){
    .lumna-cta-strip-inner{
        grid-template-columns:1fr;
        padding-left:22px;
        padding-right:22px;
    }

    .lumna-cta-item,
    .lumna-cta-message,
    .lumna-cta-contact{
        padding:16px 0;
    }

    .lumna-cta-icon{
        width:38px;
        height:38px;
        margin-right:14px;
    }

    .lumna-cta-message strong{
        font-size:1rem;
    }
}

/* CTA refinements */
.lumna-cta-message{
 display:flex;
 flex-direction:row;
 align-items:center;
 gap:16px;
 white-space:nowrap;
}
.lumna-cta-message strong{margin-bottom:0;}
.lumna-cta-item svg{
 stroke-width:1.2 !important;
}
.lumna-cta-item:hover .lumna-cta-icon svg{
    color:var(--btn-hover-color);
    transform:scale(1.07);
    transition:transform .25s ease, color .25s ease;
}
.contact-icon{
 color:#17191b;
 font-size:18px;
 width:18px;
 display:inline-flex;
 justify-content:center;
}
.email-icon{
 color:var(--gold);
}

/* =========================================================
   CTA final refinements - requested line breaks, thinner icons, FA phone
   ========================================================= */

.lumna-cta-text{
    display:flex !important;
    flex-direction:column !important;
    line-height:1.45 !important;
}

.lumna-cta-text span{
    display:block !important;
    font-weight:600 !important;
    white-space: nowrap;
}

/* Keep these two lines exactly as requested */
.lumna-cta-message{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    gap:2px !important;
    white-space:normal !important;
}

.lumna-cta-message strong,
.lumna-cta-message span{
    display:block !important;
    white-space:nowrap !important;
    margin:0 !important;
}

/* thinner icon borders/strokes */
.lumna-cta-icon svg,
.lumna-cta-item svg{
    stroke-width:.85 !important;
}

/* visual weight reduction for icon text symbols */
.lumna-sparkle{
    font-weight:300 !important;
    opacity:.78 !important;
}

/* Font Awesome contact icons */
.lumna-cta-contact .contact-icon{
    width:18px !important;
    min-width:18px !important;
    display:inline-flex !important;
    justify-content:center !important;
    align-items:center !important;
    font-size:15px !important;
    line-height:1 !important;
    font-weight:normal !important;
}

.lumna-cta-contact .phone-icon{
    color:#17191b !important;
}

.lumna-cta-contact .email-icon{
    color:var(--btn-color) !important;
}

/* make contact rows cleaner with the extra phone number */
.lumna-cta-contact{
    gap:7px !important;
}

.lumna-cta-contact a{
    gap:10px !important;
}

/* =========================================================
   CTA link hover + Customer Area icons matching CTA style
   ========================================================= */

.lumna-cta-title{
    display:inline-block;
    color:var(--gold);
    font-size:1.08rem;
    font-weight:700;
    line-height:1.35;
    margin:0;
    text-decoration:none;
    transform-origin:left center;
    transition:transform .28s ease, letter-spacing .28s ease, color .28s ease, text-shadow .28s ease;
    will-change:transform;
    white-space: nowrap;
}

.lumna-cta-title:hover{
    color:var(--btn-hover-color);

    text-shadow:0 7px 18px rgba(185,133,45,.24);
}

/* animated underline that does not affect layout */
.lumna-cta-title::after{
    content:"";
    display:block;
    width:100%;
    height:1px;
    margin-top:2px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
    transform:scaleX(0);
    transform-origin:left center;
    transition:transform .28s ease;
}

.lumna-cta-title:hover::after{
    transform:scaleX(1);
}

.lumna-cta-message strong{
    display:none;
}

/* Customer Area icon refresh */
.customer-area-list-item{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    color:#2f3741;
    line-height:1.55;
}

.customer-area-icon{
    width:38px;
    height:38px;
    min-width:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
}

.customer-area-icon svg{
    width:34px;
    height:34px;
    display:block;
    stroke-width:.85 !important;
    stroke-linecap:round;
    stroke-linejoin:round;
    filter:drop-shadow(0 2px 4px rgba(185,133,45,.12));
}

.customer-info ul li svg:not(.customer-area-icon svg){
    fill:none !important;
    stroke:currentColor !important;
}

.customer-area-list-item span:last-child{
    font-weight:400;
}

.customer-area-list-item:hover .customer-area-icon svg{
    color:var(--btn-hover-color);
    transform:scale(1.07);
    transition:transform .25s ease, color .25s ease;
}

/* =========================================================
   HERO SPLIT CLEAN - 5 slides, 8s delay, slow varied motion
   ========================================================= */

/* Remove cream cast from lower/background areas */
body{
    background:#ffffff !important;
}

body::before{
    background:none !important;
}

section:nth-child(even){
    background:#ffffff !important;
}

#about,
#services,
#portfolio,
#feedback,
#contact,
#cliente{
    background:#ffffff !important;
}

/* Main hero split */
.hero.hero-split{
    height:auto !important;
    min-height:620px;
    padding-top:92px;
    display:grid !important;
    grid-template-columns:50% 50%;
    align-items:stretch;
    justify-content:initial;
    overflow:hidden;
    position:relative;
    background:#ffffff !important;
}

/* Left text area with the same cream used by the gradient */
.hero-split-content{
    position:relative;
    z-index:4;
    display:flex;
    align-items:center;
    min-height:528px;
    padding:64px 44px 64px clamp(44px,6vw,92px);
    background:#fffdf8;
}

/* Separation gradient between text and image */
.hero-split-content::after{
    content:"";
    position:absolute;
    right:-230px;
    top:0;
    bottom:0;
    width:420px;
    z-index:5;
    pointer-events:none;
    background:linear-gradient(90deg,
        #fffdf8 0%,
        rgba(255,253,248,.94) 26%,
        rgba(255,253,248,.60) 58%,
        rgba(255,253,248,0) 100%);
}

.hero.hero-split .hero-copy{
    width:100%;
    max-width:680px;
    position:relative;
    z-index:6;
    padding:0;
}

.hero.hero-split .eyebrow{
    display:flex;
    align-items:center;
    gap:18px;
    color:var(--gold);
    font-size:.80rem;
    line-height:1.3;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:18px;
    white-space:nowrap;
}

.hero.hero-split .eyebrow::before{
    content:"✦";
    order:2;
    color:var(--gold);
    margin-left:-4px;
    font-size:12px;
}

.hero.hero-split .eyebrow::after{
    content:"";
    order:3;
    width:140px;
    height:1px;
    background:var(--gold);
    display:block;
}

/* Reduced title size to fit in exactly 2 lines */
.hero.hero-split h1,
.hero.hero-split .hero-title-two-lines{
    font-family:'Playfair Display',serif;
    color:#17191b;
    font-size:clamp(2rem,3vw,3.45rem);
    line-height:1.02;
    font-weight:600;
    letter-spacing:-.05em;
    margin:0 0 20px;
    text-shadow:none !important;
    animation:none !important;
}

.hero.hero-split h1 em{
    color:var(--gold);
    font-style:italic;
    font-weight:500;
}

.hero.hero-split p{
    color:#2d3742;
    font-size:1rem;
    line-height:1.78;
    max-width:610px;
    margin:0 0 26px;
    font-weight:400;
    text-shadow:none !important;
    animation:none !important;
}

.hero.hero-split .hero-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:22px;
}

.hero.hero-split .btn{
    animation:none !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:44px;
    padding:13px 22px;
    border-radius:5px;
    font-size:.82rem;
    letter-spacing:.035em;
    font-weight:700;
    text-transform:uppercase;
    transform:none !important;
}

.hero.hero-split .btn-Request{
    background:linear-gradient(135deg,#c69a52,#a87322);
    box-shadow:0 10px 24px rgba(185,133,45,.22);
    color:#fff;
}

.hero.hero-split .btn-outline{
    background:rgba(255,255,255,.72);
    color:var(--gold);
    border:1px solid rgba(185,133,45,.58);
    box-shadow:none;
}

.hero.hero-split .btn-outline:hover{
    background:var(--gold);
    color:#fff;
}

/* Right image slider */
.hero-image-slider{
    position:relative;
    min-height:528px;
    overflow:hidden;
    background:#fffdf8;
}

/* Gradient uses the same cream tone as the text background */
.hero-image-slider::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:42%;
    z-index:4;
    pointer-events:none;
    background:linear-gradient(90deg,
        #fffdf8 0%,
        rgba(255,253,248,.80) 34%,
        rgba(255,253,248,.28) 70%,
        rgba(255,253,248,0) 100%);
}

.hero-image-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    filter:saturate(.86) brightness(1.06);
    animation-duration:40s; /* 5 imagens x 8 segundos */
    animation-iteration-count:infinite;
    animation-timing-function:ease-in-out;
}

.hero-image-slide-1{
    background-image:url('../assets/slide1.png');
    animation-name:heroSlideLeftSlow;
    animation-delay:0s;
}

.hero-image-slide-2{
    background-image:url('../assets/slide2.png');
    animation-name:heroSlideRightZoomSlow;
    animation-delay:8s;
}

.hero-image-slide-3{
    background-image:url('../assets/slide3.png');
    animation-name:heroSlideSoftZoomSlow;
    animation-delay:16s;
}

.hero-image-slide-4{
    background-image:url('../assets/slide4.png');
    animation-name:heroSlideDiagonalSlow;
    animation-delay:24s;
}

.hero-image-slide-5{
    background-image:url('../assets/slide5.png');
    animation-name:heroSlideLeftZoomSlow;
    animation-delay:32s;
}

/* 8s per image: fades in/out while moving slowly */
@keyframes heroSlideLeftSlow{
    0%{opacity:0;transform:scale(1.035) translateX(26px);}
    4%{opacity:1;}
    17%{opacity:1;transform:scale(1.05) translateX(-16px);}
    22%{opacity:0;transform:scale(1.055) translateX(-24px);}
    100%{opacity:0;transform:scale(1.035) translateX(26px);}
}

@keyframes heroSlideRightZoomSlow{
    0%{opacity:0;transform:scale(1.075) translateX(-24px);}
    4%{opacity:1;}
    17%{opacity:1;transform:scale(1.035) translateX(18px);}
    22%{opacity:0;transform:scale(1.03) translateX(26px);}
    100%{opacity:0;transform:scale(1.075) translateX(-24px);}
}

@keyframes heroSlideSoftZoomSlow{
    0%{opacity:0;transform:scale(1.02);filter:saturate(.82) brightness(1.12);}
    4%{opacity:1;}
    17%{opacity:1;transform:scale(1.085);filter:saturate(.90) brightness(1.04);}
    22%{opacity:0;transform:scale(1.09);filter:saturate(.86) brightness(1.08);}
    100%{opacity:0;transform:scale(1.02);}
}

@keyframes heroSlideDiagonalSlow{
    0%{opacity:0;transform:scale(1.055) translate(16px,-10px);}
    4%{opacity:1;}
    17%{opacity:1;transform:scale(1.045) translate(-16px,12px);}
    22%{opacity:0;transform:scale(1.05) translate(-24px,18px);}
    100%{opacity:0;transform:scale(1.055) translate(16px,-10px);}
}

@keyframes heroSlideLeftZoomSlow{
    0%{opacity:0;transform:scale(1.025) translateX(16px);}
    4%{opacity:1;}
    17%{opacity:1;transform:scale(1.095) translateX(-14px);}
    22%{opacity:0;transform:scale(1.10) translateX(-22px);}
    100%{opacity:0;transform:scale(1.025) translateX(16px);}
}

.hero-image-badge{
    position:absolute;
    right:38px;
    bottom:38px;
    width:158px;
    height:158px;
    border-radius:50%;
    background:rgba(255,253,248,.95);
    border:2px solid var(--gold);
    outline:7px solid rgba(255,255,255,.72);
    z-index:6;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#17191b;
    text-transform:uppercase;
    box-shadow:0 16px 34px rgba(0,0,0,.15);
}

.hero-image-badge .badge-icon{
    color:var(--gold);
    font-size:28px;
    line-height:1;
    margin-bottom:6px;
}

.hero-image-badge strong,
.hero-image-badge b{
    font-size:13px;
    line-height:1.35;
    letter-spacing:.02em;
}

.hero-image-badge strong{
    font-weight:600;
}

.hero-image-badge b{
    color:var(--gold);
    font-weight:700;
}

.hero.hero-split .carousel,
.hero.hero-split .carousel-indicators{
    display:none !important;
}

@media(max-width:1100px){
    .hero.hero-split{
        grid-template-columns:1fr;
        padding-top:78px;
    }

    .hero-split-content{
        min-height:auto;
        padding:60px 28px 40px;
    }

    .hero-split-content::after{
        display:none;
    }

    .hero-image-slider{
        min-height:380px;
    }

    .hero-image-slider::before{
        width:100%;
        background:linear-gradient(180deg,#fffdf8 0%,rgba(255,253,248,0) 42%);
    }
}

@media(max-width:640px){
    .hero.hero-split .eyebrow{
        white-space:normal;
        gap:10px;
        font-size:.72rem;
    }

    .hero.hero-split .eyebrow::after{
        width:58px;
    }

    .hero.hero-split h1,
    .hero.hero-split .hero-title-two-lines{
        font-size:2.35rem;
    }

    .hero.hero-split .hero-actions{
        gap:14px;
    }

    .hero.hero-split .btn{
        width:100%;
    }

    .hero-image-slider{
        min-height:315px;
    }

    .hero-image-badge{
        display:none;
    }
}

/* =========================================================
   Red-circled hero features + services overview
   ========================================================= */

/* Hero typography: Cormorant Garamond SemiBold + closest italic to Alia JY */
.hero.hero-split h1,
.hero.hero-split .hero-title-two-lines{
    font-family:"Cormorant Garamond","Playfair Display",serif !important;
    font-weight:600 !important;
    font-size:clamp(2.35rem,3.55vw,3.95rem) !important;
    line-height:1.02 !important;
    letter-spacing:-.04em !important;
}

.hero.hero-split h1 em,
.hero.hero-split .hero-title-two-lines em{
    font-family:"Cormorant Garamond","Playfair Display",serif !important;
    font-style:italic !important;
    font-weight:500 !important;
    color:var(--gold) !important;
}

/* Section created under hero */
.hero-features{
    max-width:1480px;
    margin:-46px auto 0;
    padding:0 0 58px !important;
    position:relative;
    z-index:25;
    background:#fff !important;
}

.hero-features-container{
    padding:0 54px;
}

/* Floating card over the slide */
.hero-features-card{
    background:rgba(255,255,255,.985);
    border:1px solid rgba(185,133,45,.12);
    border-radius:8px;
    box-shadow:0 18px 48px rgba(0,0,0,.10);
    display:grid;
    grid-template-columns:repeat(5,1fr);
    overflow:hidden;
    position:relative;
    z-index:30;
}

.feature-item{
    min-height:96px;
    padding:22px 24px;
    display:flex;
    align-items:center;
    gap:18px;
    border-right:1px solid rgba(185,133,45,.18);
}

.feature-item:last-child{
    border-right:none;
}

.feature-icon{
    width:46px;
    height:46px;
    min-width:46px;
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon svg{
    width:38px;
    height:38px;
    stroke-width:.85;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.feature-dollar{
    font-family:"Cormorant Garamond","Playfair Display",serif;
    font-size:50px;
    line-height:1;
    font-weight:500;
}

.feature-stars{
    color:var(--gold);
    font-size:27px;
    letter-spacing:2px;
    line-height:1;
    white-space:nowrap;
}

.feature-item h4{
    margin:0 0 4px;
    color:#17191b;
    font-size:.98rem;
    line-height:1.25;
    font-weight:700;
}

.feature-item p{
    margin:0;
    color:#303946;
    font-size:.82rem;
    line-height:1.45;
    font-weight:400;
}

.services-overview{
    display:grid;
    grid-template-columns:1.25fr repeat(5,1fr);
    background:#fff;
    margin-top:24px;
}

.services-heading,
.service-mini{
    min-height:136px;
    padding:18px 24px;
}

.service-mini{
    border-left:1px solid rgba(185,133,45,.18);
}

.services-heading span{
    display:inline-block;
    color:var(--gold);
    font-size:.72rem;
    line-height:1;
    font-weight:700;
    letter-spacing:.07em;
    margin-bottom:8px;
}

.services-heading h2{
    font-family:"Cormorant Garamond","Playfair Display",serif;
    color:#17191b;
    font-size:2.15rem;
    line-height:.98;
    font-weight:500;
    margin:0 0 14px;
}

.services-heading h2 em{
    display:block;
    color:var(--gold);
    font-style:italic;
    font-weight:500;
}

.services-heading a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--gold);
    font-size:.72rem;
    font-weight:700;
    text-decoration:none;
    border-bottom:1px solid var(--gold);
    padding-bottom:6px;
    letter-spacing:.04em;
}

.service-mini-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    color:var(--gold);
    margin-bottom:8px;
}

.service-mini-icon svg{
    width:34px;
    height:34px;
    stroke-width:.9;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.service-mini h4{
    color:#17191b;
    font-size:.9rem;
    line-height:1.25;
    font-weight:700;
    margin:0 0 8px;
}

.service-mini p{
    color:#303946;
    font-size:.8rem;
    line-height:1.45;
    margin:0;
    font-weight:400;
}

.feature-item:hover .feature-icon svg,
.service-mini:hover .service-mini-icon svg{
    transform:scale(1.07);
    color:var(--btn-hover-color);
    filter:drop-shadow(0 4px 10px rgba(185,133,45,.22));
    transition:transform .25s ease, color .25s ease, filter .25s ease;
}

@media(max-width:1200px){
    .hero-features{
        margin:0 auto;
    }

    .hero-features-card{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-item{
        border-bottom:1px solid rgba(185,133,45,.14);
    }

    .services-overview{
        grid-template-columns:repeat(2,1fr);
    }

    .services-heading{
        grid-column:1/-1;
    }
}

@media(max-width:640px){
    .hero-features-container{
        padding:0 22px;
    }

    .hero-features-card,
    .services-overview{
        grid-template-columns:1fr;
    }

    .feature-item,
    .service-mini{
        border-right:none;
        border-left:none;
        border-bottom:1px solid rgba(185,133,45,.14);
    }
}

/* =========================================================
   About single column + feature card inside About
   Sticky bottom CTA strip
   Gold image mask on What We Do cards
   ========================================================= */

#about{
    background:#fff !important;
    padding-top:90px !important;
}

.about-content-single,
#about .about-content.about-content-single{
    display:block !important;
    max-width:1180px;
    margin:0 auto;
}

.about-content-single .about-text{
    width:100%;
    max-width:980px;
    margin:0 auto 38px;
    font-size:1.08rem;
    line-height:1.9;
    text-align:left;
}

.about-features-wrapper{
    width:100%;
    margin:0 auto;
}

.about-features-wrapper .hero-features-card{
    margin:0 auto;
    transform:none;
    box-shadow:0 18px 48px rgba(0,0,0,.08);
}

/* Remove the floating card from below Hero after moving it to About */
.hero-features .hero-features-card{
    display:none !important;
}

.hero-features{
    margin:0 auto !important;
    padding:34px 0 58px !important;
}

.hero-features .services-overview{
    margin-top:0 !important;
}

/* Fixed bottom CTA strip */
.lumna-cta-strip{
    position:fixed !important;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    width:100%;
    background:rgba(255,253,248,.97) !important;
    backdrop-filter:blur(10px);
    box-shadow:0 -10px 35px rgba(0,0,0,.08);
    border-top:1px solid rgba(185,133,45,.18);
}

body{
    padding-bottom:112px;
}

.lumna-cta-strip-inner{
    min-height:76px !important;
    padding-top:10px !important;
    padding-bottom:10px !important;
}

.lumna-cta-item,
.lumna-cta-message,
.lumna-cta-contact{
    min-height:48px !important;
}

/* Gold mask/filter for What We Do card images */
.service-image{
    position:relative;
    overflow:hidden;
    filter:grayscale(18%) sepia(28%) saturate(.86) brightness(1.02);
    transition:filter .45s ease, transform .45s ease;
}

.service-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(185,133,45,.48), rgba(255,253,248,.22));
    z-index:1;
    opacity:1;
    transition:opacity .45s ease;
    pointer-events:none;
}

.service-card:hover .service-image{
    filter:none;
    transform:scale(1.025);
}

.service-card:hover .service-image::before{
    opacity:0;
}

.service-image::after{
    z-index:2;
}

.service-card:hover .service-image::after{
    background:rgba(0,0,0,0) !important;
}

@media(max-width:1200px){
    .about-features-wrapper .hero-features-card{
        grid-template-columns:repeat(2,1fr);
    }

    .lumna-cta-strip{
        position:static !important;
    }

    body{
        padding-bottom:0;
    }
}

@media(max-width:640px){
    .about-features-wrapper .hero-features-card{
        grid-template-columns:1fr;
    }

    .about-content-single .about-text{
        max-width:100%;
    }
}

/* =========================================================
   Refinements: services overview closer to hero, About viewport alignment,
   House Cleaning item, Quality badge icon
   ========================================================= */

/* Bring the services overview closer to the hero and reduce vertical footprint */
.hero-features{
    margin:-28px auto 0 !important;
    padding:0 0 28px !important;
}

.hero-features-container{
    padding-left:54px !important;
    padding-right:54px !important;
}

.hero-features .services-overview{
    margin-top:0 !important;
    min-height:auto !important;
    align-items:stretch;
}

.hero-features .services-heading,
.hero-features .service-mini{
    min-height:106px !important;
    padding:12px 20px !important;
}

.hero-features .services-heading h2{
    font-size:1.75rem !important;
    margin-bottom:9px !important;
}

.hero-features .services-heading span{
    margin-bottom:5px !important;
}

.hero-features .service-mini-icon{
    width:34px !important;
    height:34px !important;
    margin-bottom:5px !important;
}

.hero-features .service-mini-icon svg{
    width:28px !important;
    height:28px !important;
}

.hero-features .service-mini h4{
    font-size:.82rem !important;
    margin-bottom:5px !important;
}

.hero-features .service-mini p{
    font-size:.74rem !important;
    line-height:1.38 !important;
}

/* About section: when clicking About, show only this section better centered */
#about{
    min-height:calc(100vh - 92px) !important;
    scroll-margin-top:92px;
    display:flex;
    align-items:center;
    padding-top:92px !important;
    padding-bottom:92px !important;
}

#about > .container{
    width:100%;
}

#about .about-content-single,
#about .about-content.about-content-single{
    max-width:1360px !important;
    width:100%;
    margin:0 auto !important;
}

#about .about-content-single .about-text{
    max-width:1360px !important;
    width:100%;
    margin:0 auto 42px !important;
    columns:1 !important;
    font-size:1.08rem;
    line-height:1.9;
}

#about .about-content-single .about-text p{
    max-width:100% !important;
}

/* Keep the feature card aligned with the full site width under the About text */
#about .about-features-wrapper{
    max-width:1360px !important;
    width:100%;
    margin:0 auto !important;
}

/* Quality badge icon refinements */
#about .feature-icon svg{
    stroke-width:.85 !important;
}

/* House Cleaning icon: keeps same visual style */
.service-mini h4{
    white-space:normal;
}

/* Keep fixed CTA from hiding anchor sections */
html{
    scroll-padding-top:92px;
}

@media(max-width:1200px){
    .hero-features{
        margin:0 auto !important;
    }

    #about{
        min-height:auto !important;
        display:block;
        padding-top:70px !important;
        padding-bottom:70px !important;
    }

    .hero-features .services-overview{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:640px){
    .hero-features-container{
        padding-left:22px !important;
        padding-right:22px !important;
    }

    #about{
        padding-top:60px !important;
        padding-bottom:60px !important;
    }
}

/* =========================================================
   Footer refinements + wider hero slide area + 7s slider delay
   ========================================================= */

/* Footer typography and spacing */
footer{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.footer-section h4{
    font-family:"Cormorant Garamond","Playfair Display",serif !important;
    font-weight:600 !important;
    font-size:1.35rem !important;
    letter-spacing:-.01em !important;
    color:#fff !important;
}

.footer-section svg,
footer svg{
    stroke-width:.85 !important;
}

.footer-bottom,
.footer-copy,
.copyright{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

/* Remove extra page space after footer while keeping fixed CTA room */
body{
    margin-bottom:0 !important;
}

/* Hero: give more width to image slider */
.hero.hero-split{
    grid-template-columns:44% 56% !important;
}

/* Move text-to-image gradient division further left/narrower */
.hero-split-content{
    padding-right:20px !important;
}

.hero-split-content::after{
    right:-150px !important;
    width:285px !important;
    background:linear-gradient(90deg,
        #fffdf8 0%,
        rgba(255,253,248,.88) 22%,
        rgba(255,253,248,.46) 54%,
        rgba(255,253,248,0) 100%) !important;
}

.hero-image-slider::before{
    width:27% !important;
    background:linear-gradient(90deg,
        #fffdf8 0%,
        rgba(255,253,248,.64) 36%,
        rgba(255,253,248,.18) 70%,
        rgba(255,253,248,0) 100%) !important;
}

/* 5 slides x 7 seconds = 35s */
.hero-image-slide{
    animation-duration:35s !important;
}

.hero-image-slide-1{ animation-delay:0s !important; }
.hero-image-slide-2{ animation-delay:7s !important; }
.hero-image-slide-3{ animation-delay:14s !important; }
.hero-image-slide-4{ animation-delay:21s !important; }
.hero-image-slide-5{ animation-delay:28s !important; }

/* Updated keyframes for 7s timing within 35s cycle */
@keyframes heroSlideLeftSlow{
    0%{opacity:0;transform:scale(1.035) translateX(26px);}
    4%{opacity:1;}
    16%{opacity:1;transform:scale(1.05) translateX(-16px);}
    20%{opacity:0;transform:scale(1.055) translateX(-24px);}
    100%{opacity:0;transform:scale(1.035) translateX(26px);}
}

@keyframes heroSlideRightZoomSlow{
    0%{opacity:0;transform:scale(1.075) translateX(-24px);}
    4%{opacity:1;}
    16%{opacity:1;transform:scale(1.035) translateX(18px);}
    20%{opacity:0;transform:scale(1.03) translateX(26px);}
    100%{opacity:0;transform:scale(1.075) translateX(-24px);}
}

@keyframes heroSlideSoftZoomSlow{
    0%{opacity:0;transform:scale(1.02);filter:saturate(.82) brightness(1.12);}
    4%{opacity:1;}
    16%{opacity:1;transform:scale(1.085);filter:saturate(.90) brightness(1.04);}
    20%{opacity:0;transform:scale(1.09);filter:saturate(.86) brightness(1.08);}
    100%{opacity:0;transform:scale(1.02);}
}

@keyframes heroSlideDiagonalSlow{
    0%{opacity:0;transform:scale(1.055) translate(16px,-10px);}
    4%{opacity:1;}
    16%{opacity:1;transform:scale(1.045) translate(-16px,12px);}
    20%{opacity:0;transform:scale(1.05) translate(-24px,18px);}
    100%{opacity:0;transform:scale(1.055) translate(16px,-10px);}
}

@keyframes heroSlideLeftZoomSlow{
    0%{opacity:0;transform:scale(1.025) translateX(16px);}
    4%{opacity:1;}
    16%{opacity:1;transform:scale(1.095) translateX(-14px);}
    20%{opacity:0;transform:scale(1.10) translateX(-22px);}
    100%{opacity:0;transform:scale(1.025) translateX(16px);}
}

@media(max-width:1100px){
    .hero.hero-split{
        grid-template-columns:1fr !important;
    }

    .hero-split-content::after{
        display:none !important;
    }

    .hero-image-slider::before{
        width:100% !important;
    }
}\n\n/* =========================================================
   Update: 6th hero slide + Exterior Services text
   ========================================================= */

.hero-image-slide{
    animation-duration:42s !important; /* 6 slides x 7 seconds */
}

.hero-image-slide-1{ animation-delay:0s !important; }
.hero-image-slide-2{ animation-delay:7s !important; }
.hero-image-slide-3{ animation-delay:14s !important; }
.hero-image-slide-4{ animation-delay:21s !important; }
.hero-image-slide-5{ animation-delay:28s !important; }

.hero-image-slide-6{
    background-image:url('../assets/slide6.png') !important;
    animation-name:heroSlideRightZoomSlow;
    animation-delay:35s !important;
}\n

/* =========================================================
   What We Do - 12 service cards / 4 cards per row
   ========================================================= */
#services .services-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

#services .service-image{
    height:175px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

#services .service-card:nth-child(1) .service-image{background-image:url('../assets/serv1.png');}
#services .service-card:nth-child(2) .service-image{background-image:url('../assets/serv2.png');}
#services .service-card:nth-child(3) .service-image{background-image:url('../assets/serv3.png');}
#services .service-card:nth-child(4) .service-image{background-image:url('../assets/serv4.png');}
#services .service-card:nth-child(5) .service-image{background-image:url('../assets/serv5.png');}
#services .service-card:nth-child(6) .service-image{background-image:url('../assets/serv6.png');}
#services .service-card:nth-child(7) .service-image{background-image:url('../assets/serv7.png');}
#services .service-card:nth-child(8) .service-image{background-image:url('../assets/serv8.png');}
#services .service-card:nth-child(9) .service-image{background-image:url('../assets/serv9.png');}
#services .service-card:nth-child(10) .service-image{background-image:url('../assets/serv10.png');}
#services .service-card:nth-child(11) .service-image{background-image:url('../assets/serv11.png');}
#services .service-card:nth-child(12) .service-image{background-image:url('../assets/serv12.png');}

@media(max-width:1200px){
    #services .services-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:900px){
    #services .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    #services .services-grid{
        grid-template-columns:1fr;
    }
}


/* =========================================================
   FIX DEFINITIVO - What We Do: 4 cards por linha + títulos
   Coloque este bloco sempre no FINAL do arquivo.
   ========================================================= */

#services .services-grid{
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

#services .service-card{
    width: 100% !important;
    min-width: 0 !important;
}

#services .service-card .service-content{
    text-align: left !important;
}

#services .service-card h3,
#services .service-card .service-content h3{
    font-family: "Cormorant Garamond", "Playfair Display", serif !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
    color: #17191b !important;
    margin: 0 0 0.85rem !important;
}

#services .service-card h3 em,
#services .service-card .service-content h3 em{
    font-family: "Cormorant Garamond", "Playfair Display", serif !important;
    font-style: italic !important;
    color: var(--gold) !important;
    font-weight: 500 !important;
}

#services .service-card p{
    font-size: 0.95rem !important;
    line-height: 1.68 !important;
    color: #59626d !important;
    font-weight: 400 !important;
}

#services .service-card:nth-child(1) .service-image{background-image:url('../assets/serv1.png') !important;}
#services .service-card:nth-child(2) .service-image{background-image:url('../assets/serv2.png') !important;}
#services .service-card:nth-child(3) .service-image{background-image:url('../assets/serv3.png') !important;}
#services .service-card:nth-child(4) .service-image{background-image:url('../assets/serv4.png') !important;}
#services .service-card:nth-child(5) .service-image{background-image:url('../assets/serv5.png') !important;}
#services .service-card:nth-child(6) .service-image{background-image:url('../assets/serv6.png') !important;}
#services .service-card:nth-child(7) .service-image{background-image:url('../assets/serv7.png') !important;}
#services .service-card:nth-child(8) .service-image{background-image:url('../assets/serv8.png') !important;}
#services .service-card:nth-child(9) .service-image{background-image:url('../assets/serv9.png') !important;}
#services .service-card:nth-child(10) .service-image{background-image:url('../assets/serv10.png') !important;}
#services .service-card:nth-child(11) .service-image{background-image:url('../assets/serv11.png') !important;}
#services .service-card:nth-child(12) .service-image{background-image:url('../assets/serv12.png') !important;}

@media (max-width: 1200px){
    #services .services-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px){
    #services .services-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px){
    #services .services-grid{
        grid-template-columns: 1fr !important;
    }
}

/* FORCE SERVICE TITLES */
#services .service-card h3{
    font-family: "Cormorant Garamond", serif !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    color: #17191b !important;
}
}

/* =========================================================
   FINAL FIX - What We Do cards: 4 per row + title style
   Matches "Let’s Build Something Great Together" CTA title
   ========================================================= */

#services .services-grid{
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin-top: 3rem !important;
}

#services .service-card{
    min-width: 0 !important;
}

#services .service-card .service-content{
    text-align: left !important;
}

#services .service-card .service-content h3,
#services .service-card h3{
    display: inline-block !important;
    font-family: 'Montserrat', sans-serif !important;
    color: var(--gold) !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
    margin: 0 0 10px 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: normal !important;
    transform-origin: left center !important;
    transition: transform .28s ease, letter-spacing .28s ease, color .28s ease, text-shadow .28s ease !important;
    will-change: transform !important;
}

#services .service-card:hover .service-content h3,
#services .service-card:hover h3{
    color: var(--btn-hover-color) !important;
    text-shadow: 0 7px 18px rgba(185,133,45,.24) !important;
}

#services .service-card .service-content h3::after,
#services .service-card h3::after{
    content: "" !important;
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    margin-top: 2px !important;
    background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
    transition: transform .28s ease !important;
}

#services .service-card:hover .service-content h3::after,
#services .service-card:hover h3::after{
    transform: scaleX(1) !important;
}

@media (max-width: 1200px){
    #services .services-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px){
    #services .services-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px){
    #services .services-grid{
        grid-template-columns: 1fr !important;
    }
}


/* =========================================================
   FINAL FIX - Hero image badge sliding shine hover
   Restores premium light sweep effect on the circular badge
   ========================================================= */
.hero-image-badge{
    position: absolute !important;
    overflow: hidden !important;
    cursor: default !important;
    isolation: isolate !important;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease !important;
}

.hero-image-badge::before{
    content: '' !important;
    position: absolute !important;
    top: -20% !important;
    left: -90% !important;
    width: 48% !important;
    height: 140% !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        rgba(255,255,255,.85),
        rgba(255,255,255,.18),
        transparent
    ) !important;
    transform: skewX(-24deg) translateX(0) !important;
    transition: transform .75s cubic-bezier(.2,.8,.2,1), opacity .35s ease !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    filter: blur(1px) !important;
}

.hero-image-badge:hover::before{
    transform: skewX(-24deg) translateX(430%) !important;
    opacity: 1 !important;
}

.hero-image-badge:hover{
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow:
        0 18px 40px rgba(0,0,0,.18),
        0 0 25px rgba(185,133,45,.35) !important;
}

.hero-image-badge > *{
    position: relative !important;
    z-index: 2 !important;
}

/* =========================================================
   FINAL ADJUSTMENT - Stronger badge shine + hero features higher
   ========================================================= */
.hero-image-badge{
    overflow: hidden !important;
    isolation: isolate !important;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease !important;
}

.hero-image-badge::before{
    content: '' !important;
    position: absolute !important;
    top: -28% !important;
    left: -135% !important;
    width: 78% !important;
    height: 156% !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.08) 14%,
        rgba(255,255,255,.55) 38%,
        rgba(255,255,255,1) 50%,
        rgba(255,255,255,.55) 62%,
        rgba(255,255,255,.08) 86%,
        transparent 100%
    ) !important;
    transform: skewX(-24deg) translateX(0) !important;
    transition: transform .85s cubic-bezier(.2,.8,.2,1), opacity .25s ease !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 3 !important;
    filter: blur(.35px) !important;
    mix-blend-mode: screen !important;
}

.hero-image-badge::after{
    content: '' !important;
    position: absolute !important;
    inset: 10px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(255,255,255,.38), transparent 58%) !important;
    opacity: 0 !important;
    transition: opacity .35s ease !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.hero-image-badge:hover::before{
    transform: skewX(-24deg) translateX(460%) !important;
    opacity: 1 !important;
}

.hero-image-badge:hover::after{
    opacity: .85 !important;
}

.hero-image-badge:hover{
    transform: translateY(-5px) scale(1.04) !important;
    border-color: #d8ae62 !important;
    box-shadow:
        0 20px 44px rgba(0,0,0,.20),
        0 0 0 8px rgba(255,255,255,.38),
        0 0 34px rgba(185,133,45,.58) !important;
}

.hero-image-badge > *{
    position: relative !important;
    z-index: 4 !important;
}

/* Move the first services overview section a little higher above the fixed CTA strip */
.hero-features{
    margin-top: -56px !important;
    padding-top: 0 !important;
    padding-bottom: 52px !important;
}

.hero-features .services-overview{
    transform: translateY(-10px) !important;
}

@media(max-width:1200px){
    .hero-features{
        margin-top: -28px !important;
        padding-bottom: 46px !important;
    }

    .hero-features .services-overview{
        transform: translateY(-6px) !important;
    }
}

@media(max-width:640px){
    .hero-features{
        margin-top: 0 !important;
        padding-bottom: 38px !important;
    }

    .hero-features .services-overview{
        transform: none !important;
    }
}


/* =========================================================
   Lumna Services - ajustes finais organizados
   Objetivo: manter o layout atual, corrigir pequenos conflitos
   e melhorar a experiência em celulares, especialmente iPhone.
   ========================================================= */

/* Segurança visual geral */
html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 92px;
}

body {
    overflow-x: hidden;
}

img, svg, video, iframe {
    max-width: 100%;
}

/* Rodapé simples e centralizado */
.footer-copyright {
    margin: 0;
    padding: 16px 10px;
    text-align: center;
    background: #181818;
    color: #f3eee2;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Menu mobile: fica pronto para o script abrir/fechar adicionando a classe .active */
@media (max-width: 900px) {
    .container-nav {
        height: 76px;
    }

    .brand-symbol img {
        height: 48px;
    }

    .brand-text img {
        height: 23px;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 16px 20px 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.10);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 13px 10px;
        font-size: 1rem;
    }

    .nav-links .btncustomer a {
        margin-top: 8px;
        display: inline-block;
        width: auto;
        padding: 12px 22px;
    }
}

/* Hero no iPhone: evita cortes, sobreposição e texto espremido */
@media (max-width: 768px) {
    .hero.hero-split {
        min-height: auto;
        height: auto;
        padding-top: 96px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-split-content,
    .hero-copy {
        width: 100%;
    }

    .hero-copy {
        padding: 34px 20px 24px;
        text-align: left;
    }

    .hero-title-two-lines,
    .hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
        line-height: 0.98;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .hero-image-slider {
        width: 100%;
        min-height: 360px;
        height: 48vh;
        border-radius: 0;
    }

    .hero-image-badge {
        width: 132px;
        height: 132px;
        right: 18px;
        bottom: 18px;
        font-size: 0.82rem;
    }

    .badge-icon {
        font-size: 22px;
    }
}

/* Serviços e cards em telas pequenas */
@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    section {
        padding: 56px 0;
    }

    .services-overview,
    .services-grid,
    .contact-wrapper,
    .customer-content,
    .about-content {
        grid-template-columns: 1fr !important;
    }

    .services-heading h2,
    .section-title {
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.05;
    }

    .service-card h3 {
        font-size: clamp(1.8rem, 8vw, 2.15rem) !important;
    }

    .contact-wrapper,
    .customer-content {
        padding: 24px 18px;
        gap: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .full-width {
        grid-column: auto !important;
    }

    .btn-cliente {
        margin: 0;
        width: 100%;
        min-height: 54px;
    }
}

/* Ajuste fino para iPhones pequenos */
@media (max-width: 430px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-symbol img {
        height: 42px;
    }

    .brand-text {
        margin-left: 8px;
    }

    .brand-text img {
        height: 20px;
    }

    .hero-copy {
        padding-left: 16px;
        padding-right: 16px;
    }

    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .hero-image-slider {
        min-height: 315px;
    }

    .lumna-cta-strip-inner {
        grid-template-columns: 1fr !important;
    }

    .lumna-cta-item,
    .lumna-cta-message,
    .lumna-cta-contact {
        min-height: auto;
        padding: 20px 16px;
    }

    .lumna-cta-contact a {
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
   FINAL FIX - Badge shine animation + Customer Area text size
   ========================================================= */
.hero-image-badge{
    position: absolute !important;
    overflow: hidden !important;
    isolation: isolate !important;
    cursor: pointer !important;
    transform: translateZ(0) !important;
}

.hero-image-badge::before{
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 85% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent) !important;
    transform: skewX(-22deg) !important;
    transition: left .65s ease !important;
    opacity: 1 !important;
    z-index: 10 !important;
    pointer-events: none !important;
    mix-blend-mode: normal !important;
    filter: none !important;
}

.hero-image-badge:hover::before{
    left: 135% !important;
}

.hero-image-badge:hover{
    transform: translateY(-4px) scale(1.03) translateZ(0) !important;
    box-shadow: 0 20px 44px rgba(0,0,0,.20), 0 0 32px rgba(185,133,45,.45) !important;
}

.hero-image-badge > *{
    position: relative !important;
    z-index: 11 !important;
}

#cliente .customer-content,
#cliente .customer-info,
#cliente .customer-info p,
#cliente .customer-info ul,
#cliente .customer-info li,
#cliente .customer-info span:not(.customer-area-icon){
    font-size: 1.08rem !important;
    line-height: 1.9 !important;
    font-weight: 400 !important;
}

#cliente .customer-info p{
    color: #4f5661 !important;
    margin-bottom: 1.5rem !important;
}

#cliente .customer-info li{
    margin-bottom: .35rem !important;
}

@media (max-width: 430px){
    #cliente .customer-content,
    #cliente .customer-info,
    #cliente .customer-info p,
    #cliente .customer-info ul,
    #cliente .customer-info li,
    #cliente .customer-info span:not(.customer-area-icon){
        font-size: 1rem !important;
        line-height: 1.75 !important;
    }
}
