body {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Fonte padrão do site */
body, .btn, input, textarea, select, h1, h3, h5, h6, p, a, label, .form-label {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif !important;
}

/* Fonte dos h2 */
h2 {
    font-family: 'Playfair Display', serif !important;
} 

section{
    padding: 20px 10px;
    
}

.hero {
    background: #fff;
    padding: 60px 0;
    min-height: 700px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111111 0.8%, rgba(17, 17, 17, 0.4) 30%, rgba(17, 17, 17, 0.2) 60%, transparent 100%);
    z-index: 2;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 3;
    margin-left: 60px;
    margin-bottom: 15px;
}
.hero h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero .lead {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.hero .btn-primary {
    background: #f3690c;
    border-color: #f3690c;
    border:solid 1px #FFF;
}
.hero .btn-primary:hover {
    background: #265281;
    border-color: #265281;
}
.hero .btn-outline-light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}
.hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
}
.features {
    padding: 40px 0;
    background: #fdf6f1;
}
.features .display-4 {
    color: #f3690c !important;
}
.features h4 {
    color: #265281;
}
.footer {
    background: #265281;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 3px solid transparent;
    border-image: linear-gradient(45deg, #f7e27c, #FFFFFF, #a17913) 1;    
}
.navbar {
    background: #265281 !important;
    border-bottom: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-link.active {
    color: #fff !important;
    font-weight: bold;
}
.navbar-brand {
    padding: 0;
    background-color: #FFFFFF;
    padding: 6px 5px 0 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 75px;
    width: 200px;
    top: 0;
    border-radius: 0 0 10px 10px;
    border-bottom: 2px solid #FFFFFF;
    z-index: 10;
    overflow: hidden;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
.navbar-brand img {
    width: 186px;
    height: auto;
    padding: 5px;
}

@media (max-width: 575px) {
    .navbar-brand {
        padding: 12px 10px 0 10px;
        height: 66px;
        width: 170px;        
    }
    .navbar-brand img {
        width: 150px;
        height: auto;
    }    
}

.nav-link {
    color: #FFFFFF !important;
}
.nav-link:hover {
    color: #FFFFFF !important;
}
#formContato .btn-primary {
    background: #265281;
    border-color: #FFFFFF;
}
#formContato .btn-primary:hover {
    background: #265281;
    border-color: #265281;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
@media (max-width: 575px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
}
#lojas {
    padding: 40px 0 60px 0;
    
}
#contato {
    background: linear-gradient(135deg, #265281 0%, #5fa8e6 100%);
    padding: 80px 0;
    color: white;
}

#contato h2 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

#contato .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#contato .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
}

#contato .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

#contato .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#contato .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#contato .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#contato .alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    #contato {
        padding: 60px 0;
    }
    
    #contato h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    #contato {
        padding: 40px 0;
    }
    
    #contato h2 {
        font-size: 1.5rem;
    }
    
    #contato .form-control {
        padding: 0.625rem 0.875rem;
    }
    
    #contato .btn-primary {
        padding: 0.625rem 1.5rem;
    }
}

#tags-seo{
    padding: 40px 0 60px 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}
.tag-cloud .tag {
    display: inline-block;
    background: #26528122;
    color: #265281;
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    border: 1px solid #26528144;
}
.tag-cloud .tag:hover {
    background: #FFFFFF;
    color: #fff;
    cursor: pointer;
}
.navbar .d-flex {
    margin-left: auto;
}
.navbar .d-flex a {
    color: #FFFFFF;
}
.navbar .d-flex a:hover {
    color: #ffffff;
}

.hero-cta .btn-primary{
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #265281;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
}

.hero-cta .btn-primary:hover{
    background: #265281;
    border-color: #265281;
    color: #FFFFFF;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: fit-content;
    max-width: 650px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.benefit-item i {
    font-size: 1.2rem;
    color: #28a745;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-urgency {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-size: 1rem;
    background: #198754 ;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    display: inline-block;
    margin-top: 1rem;
}
.hero-urgency i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.whatsapp-btn {
    background: #198754  !important;
    border-color: #25D366 !important;
    color: white !important;
    text-shadow: none !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: white !important;
}

@media (max-width: 768px) {
    .hero .container {
        margin-left: 0;
        text-align: center;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .hero-benefits {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
    }
}
#depoimentos {
    background: #265281;
    padding: 40px 0 60px 0;
}
h2, h4 {
    font-family: 'Playfair Display', serif !important;
}
@media (max-width: 768px) {
    #depoimentos {
        padding: 40px 20px;
        margin: 20px 10px;
    }
    #depoimentos .row {
        margin: 0;
    }
    #depoimentos .col-md-6 {
        padding: 0 10px;
    }
}
.stars {
    font-size: 1.2rem;
}
.stars i {
    margin: 0 2px;
}
#depoimentos .card {
    background-color: #E3F2FD !important;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#depoimentos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
#depoimentos .card-title {
    color: #265281;
    font-weight: 600;
    margin-top: 1rem;
}
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.product-content {
    padding: 1.5rem;
    text-align: center;
}
.product-content h4 {
    color: #265281;
    margin-bottom: 1rem;
}
.product-content p {
    color: #666;
    line-height: 1.6;
}
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slideshow .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.hero-slideshow .hero-image.active {
    opacity: 1;
} 

/* Hero Title Styles */
.hero-title {
    text-align: left;
    margin-bottom: 2rem;
}

.hero-main-title {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: 48px;
    line-height: 38px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: rgb(255, 255, 255);
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-main-title,
    .hero-subtitle {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .hero-main-title,
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* Seção Nossa Loja */
#loja {
    background: linear-gradient(135deg, #265281 0%, #5fa8e6 100%);
    padding: 80px 0;
    color: white;
}

#loja h2 {
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

/* Cards da loja */
#loja .card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#loja .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15) !important;
}

#loja .card .card-title {
    color: white !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

#loja .card .card-text {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

#loja .card .card-body {
    padding: 1.5rem;
}

#loja .card .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#loja .card .btn-success {
    background: rgba(40, 167, 69, 0.8);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

#loja .card .btn-success:hover {
    background: rgba(40, 167, 69, 1);
    transform: translateY(-2px);
}

#loja .card .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

#loja .card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

#loja .card .btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

#loja .card .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

#loja .card i {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    #loja {
        padding: 60px 0;
    }
    
    #loja h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    #loja .card .card-body {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    #loja {
        padding: 40px 0;
    }
    
    #loja h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    #loja .card .card-body {
        padding: 1rem;
    }
}

/* Seção de Benefícios */
.beneficios-bd {
    padding: 60px 0 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.beneficio-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(38,82,129,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(38,82,129,0.25);
}

.beneficio-top {
    background: rgba(38,82,129,1);
    padding: 25px 20px;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.beneficio-bottom {
    background: #fff;
    padding: 20px;
    text-align: center;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-titulo {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
    margin-top: 0;
}

.beneficio-subtitulo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.beneficio-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.beneficio-desc {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(38,82,129,1);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .beneficios-bd {
        padding: 40px 0 20px 0;
    }
    
    .beneficio-card {
        margin-bottom: 20px;
    }
    
    .beneficio-top {
        padding: 20px 15px;
    }
    
    .beneficio-bottom {
        padding: 15px;
    }
    
    .beneficio-titulo {
        font-size: 16px;
    }
    
    .beneficio-subtitulo {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .beneficio-img {
        width: 50px;
        height: 50px;
    }
    
    .beneficio-desc {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .beneficio-top {
        padding: 15px 12px;
    }
    
    .beneficio-bottom {
        padding: 12px;
    }
    
    .beneficio-titulo {
        font-size: 15px;
    }
    
    .beneficio-subtitulo {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .beneficio-img {
        width: 40px;
        height: 40px;
    }
    
    .beneficio-desc {
        font-size: 12px;
    }
}

/* Botão de Orçamento */
.btn-orcamento {
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-orcamento:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25, 135, 84, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
}

.btn-orcamento:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.3);
}

.btn-orcamento .bi-whatsapp {
    font-size: 1.4rem;
}

@media (max-width: 767px) {
    .btn-orcamento {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .btn-orcamento .bi-whatsapp {
        font-size: 1.2rem;
    }
}

/* Seção de Destaque */
.destaque-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #265281 0%, #5fa8e6 100%);
    color: white;
    overflow: hidden;
}

.destaque-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 82, 129, 0.1);
    z-index: 1;
}

.destaque-content {
    position: relative;
    z-index: 2;
}

.destaque-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.destaque-text {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.destaque-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.destaque-section .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.destaque-section .btn-primary:hover {
    background: white;
    color: #265281;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .destaque-section {
        padding: 60px 0;
    }
    
    .destaque-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .destaque-text {
        text-align: center;
        font-size: 1rem;
    }
    
    .destaque-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .destaque-section .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Seção de Marcas Parceiras */
.marcas-section {
    background: #fff;
    padding: 60px 0;
}

.marcas-section h2 {
    font-family: 'Playfair Display', serif;
    color: #265281;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.marca-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    height: 120px;
    margin: 0 auto;
    max-width: 200px;
}

.marca-item:hover {
    transform: translateY(-5px);
}

.marca-logo {
    max-width: 90%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .marcas-section {
        padding: 40px 0;
    }
    
    .marcas-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .marca-item {
        height: 100px;
        padding: 15px;
    }
    
    .marca-logo {
        max-width: 80%;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .marcas-section h2 {
        font-size: 1.8rem;
    }
    
    .marca-item {
        height: 80px;
        padding: 10px;
    }
    
    .marca-logo {
        max-width: 70%;
        max-height: 50px;
    }
}

/* Seção Banheiras e Spas */
.banheiras-spas-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #265281 0%, #5fa8e6 100%);
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 82, 129, 0.1);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 18px;
    margin: 0;
}

.produto-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.produto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.produto-image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px;
}

.produto-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-item:hover .produto-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .banheiras-spas-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .produto-image-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .banheiras-spas-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .produto-image-container {
        height: 200px;
    }
}

/* Seção Instalação */
.instalacao-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0e345c 0%, #265281 100%);
    overflow: hidden;
}

.instalacao-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 52, 92, 0.1);
    z-index: 1;
}

.instalacao-section .section-content {
    position: relative;
    z-index: 2;
}

.instalacao-text {
    color: white;
}

.instalacao-title {
    margin-bottom: 2rem;
    line-height: 1.2;
}

.instalacao-title .title-main {
    display: block;
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-size: 36px;
    line-height: 26px;
    margin-bottom: 0.5rem;
}

.instalacao-title .title-subtitle {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: rgb(255, 255, 255);
    font-size: 36px;
    line-height: 18px;
    margin-bottom: 0.5rem;
}

.instalacao-description {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.instalacao-text-content {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
}

.instalacao-benefits {
    margin-bottom: 2rem;
}

.instalacao-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.instalacao-benefits .benefit-icon {
    margin-right: 1rem;
    margin-top: 2px;
}

.instalacao-benefits .benefit-icon i {
    font-size: 20px;
    color: #28a745;
}

.instalacao-benefits .benefit-text span {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: rgb(14, 52, 92);
    font-size: 16px;
    line-height: 24px;
    color: white;
}

.instalacao-cta {
    margin-top: 2rem;
}

.instalacao-cta .cta-text {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.instalacao-whatsapp-btn {
    text-align: center;
}

.instalacao-whatsapp-btn .btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instalacao-whatsapp-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.instalacao-whatsapp-btn .btn i {
    font-size: 20px;
}

.instalacao-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.instalacao-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.instalacao-image-container:hover .instalacao-image {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .instalacao-section {
        padding: 80px 0;
    }
    
    .instalacao-title .title-main,
    .instalacao-title .title-subtitle {
        font-size: 28px;
    }
    
    .instalacao-image-container {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .instalacao-section {
        padding: 60px 0;
    }
    
    .instalacao-title .title-main,
    .instalacao-title .title-subtitle {
        font-size: 24px;
    }
    
    .instalacao-description {
        font-size: 16px;
    }
    
    .instalacao-text-content {
        font-size: 14px;
    }
    
    .instalacao-benefits .benefit-text span {
        font-size: 14px;
    }
    
    .instalacao-cta .cta-text {
        font-size: 16px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .instalacao-section {
        padding: 40px 0;
    }
    
    .instalacao-title .title-main,
    .instalacao-title .title-subtitle {
        font-size: 20px;
    }
    
    .instalacao-benefits .benefit-item {
        padding: 0.75rem;
    }
    
    .instalacao-benefits .benefit-icon {
        margin-right: 0.75rem;
    }
    
    .instalacao-benefits .benefit-icon i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .instalacao-cta .cta-text {
        font-size: 16px;
        padding: 1rem;
    }
    
    .instalacao-whatsapp-btn .btn {
        padding: 0.875rem 1.5rem;
        font-size: 14px;
    }
    
    .instalacao-whatsapp-btn .btn i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .instalacao-whatsapp-btn .btn {
        padding: 0.75rem 1.25rem;
        font-size: 13px;
    }
    
    .instalacao-whatsapp-btn .btn i {
        font-size: 16px;
        margin-right: 0.5rem !important;
    }
}

/* Seção Dúvidas */
.duvidas-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    color: rgb(14, 52, 92);
}

.duvidas-text {
    height: 100%;
    display: flex;
    align-items: center;
}

.duvidas-title {
    line-height: 1.2;
    border: 1px solid rgb(14, 52, 92);
    padding: 30px;
    border-radius: 20px;
    background-color: #f8f9fa;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    margin: 0;
}

.duvidas-title .title-main {
    display: block;
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: rgb(14, 52, 92);
    font-size: 36px;
    line-height: 28px;
    margin-bottom: 0.5rem;
}

.duvidas-title .title-subtitle {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: rgb(14, 52, 92);
    font-size: 36px;
    line-height: 18px;
    margin-bottom: 0.5rem;
}

.duvidas-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.duvidas-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.duvidas-image-container:hover .duvidas-image {
    transform: scale(1.05);
}

.duvida-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.duvida-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.duvida-top {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(38, 82, 129, 0.2);
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.duvida-bottom {
    background: rgba(38, 82, 129, 0.1);
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.duvida-icon {
    margin-bottom: 1rem;
}

.duvida-icon i {
    font-size: 2rem;
}

.duvida-top .duvida-icon i {
    color: #265281;
}

.duvida-bottom .duvida-icon i {
    color: #265281;
}

.duvida-texto-negativo {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #265281;
    margin: 0;
    line-height: 1.4;
}

.duvida-texto-positivo {
    font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #265281;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .duvidas-section {
        padding: 60px 0;
    }
    
    .duvidas-title .title-main,
    .duvidas-title .title-subtitle {
        font-size: 28px;
    }
    
    .duvidas-image-container {
        margin-top: 3rem;
        height: auto;
    }
    
    .duvidas-text {
        height: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .duvidas-section {
        padding: 50px 0;
    }
    
    .duvidas-title .title-main,
    .duvidas-title .title-subtitle {
        font-size: 24px;
    }
    
    .duvida-top,
    .duvida-bottom {
        padding: 1.25rem;
    }
    
    .duvida-icon i {
        font-size: 1.75rem;
    }
    
    .duvida-texto-negativo {
        font-size: 15px;
    }
    
    .duvida-texto-positivo {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .duvidas-section {
        padding: 40px 0;
    }
    
    .duvidas-title .title-main,
    .duvidas-title .title-subtitle {
        font-size: 20px;
    }
    
    .duvida-top,
    .duvida-bottom {
        padding: 1rem;
        min-height: auto;
    }
    
    .duvida-icon i {
        font-size: 1.5rem;
    }
    
    .duvida-texto-negativo {
        font-size: 14px;
    }
    
    .duvida-texto-positivo {
        font-size: 12px;
    }
}

/* Seção Regiões Atendidas */
.regioes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    color: rgb(14, 52, 92);
}

.regioes-section h2 {
    color: rgb(14, 52, 92);
    font-weight: 700;
    margin-bottom: 1rem;
}

.regioes-section p {
    color: rgb(14, 52, 92);
    font-size: 18px;
    line-height: 1.6;
}

.regiao-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(38, 82, 129, 0.1);
}

.regiao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(38, 82, 129, 0.3);
}

.regiao-header {
    background: linear-gradient(135deg, #265281 0%, #5fa8e6 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.regiao-header i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.regiao-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.25rem;
}

.regiao-content {
    padding: 1.5rem;
    text-align: center;
}

.regiao-content p {
    margin-bottom: 0.5rem;
    color: rgb(14, 52, 92);
}

.regiao-content p:first-child {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.regiao-content p:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(14, 52, 92, 0.8);
}

.regioes-cta {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(38, 82, 129, 0.2);
}

.regioes-cta h3 {
    color: rgb(14, 52, 92);
    font-weight: 600;
    margin-bottom: 1rem;
}

.regioes-cta p {
    color: rgba(14, 52, 92, 0.8);
    margin-bottom: 1.5rem;
}

.regioes-cta .btn {
    background: linear-gradient(135deg, #265281 0%, #5fa8e6 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.regioes-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 82, 129, 0.3);
}

@media (max-width: 768px) {
    .regioes-section {
        padding: 60px 0;
    }
    
    .regioes-section h2 {
        font-size: 1.75rem;
    }
    
    .regioes-section p {
        font-size: 16px;
    }
    
    .regiao-header {
        padding: 1.25rem;
    }
    
    .regiao-header i {
        font-size: 1.75rem;
    }
    
    .regiao-header h4 {
        font-size: 1.1rem;
    }
    
    .regiao-content {
        padding: 1.25rem;
    }
    
    .regioes-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .regioes-section {
        padding: 40px 0;
    }
    
    .regioes-section h2 {
        font-size: 1.5rem;
    }
    
    .regiao-header {
        padding: 1rem;
    }
    
    .regiao-content {
        padding: 1rem;
    }
    
    .regioes-cta {
        padding: 1.25rem;
    }
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

