:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #FFE55C;
    --dark-bg: #1a1a1a;
    --medium-bg: #2d2d2d;
    --light-bg: #f8f8f8;
    --text-dark: #333;
    --text-light: #f5f5f5;
    --accent-red: #C62828;
    --accent-blue: #1565C0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-bg);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./imagem/capa.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--medium-bg);
    color: var(--text-light);
}

.btn-cta {
    background-color: var(--dark-bg);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-cta:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

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

/* Services Section - Slider Reestruturado */
.services {
    padding: 100px 0 100px;
    background-color: var(--light-bg);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Services Slider Container */
.services-slider-container {
    position: relative;
    margin: 0 auto 60px;
    width: 100%;
}

.services-slider {
    display: flex;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-height: 600px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-slide {
    display: none;
    width: 100%;
    background: white;
    animation: fadeIn 0.5s ease-in-out;
}

.service-slide.active {
    display: flex;
}

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

/* Imagem maior - 60% da largura */
.slide-image {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-slide:hover .slide-image img {
    transform: scale(1.05);
}

/* Controles fixos na base da imagem */
.image-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 10;
}

.image-controls .slider-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.image-controls .slider-btn:hover {
    background-color: var(--primary-gold);
    transform: scale(1.1);
}

.image-controls .slider-dots {
    display: flex;
    gap: 10px;
}

.image-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-controls .dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.3);
}

.image-controls .dot:hover {
    background-color: var(--light-gold);
}

/* Conteúdo do slide - 40% da largura */
.slide-content {
    flex: 0 0 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.slide-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
    line-height: 1.3;
}

.slide-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.service-features span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.service-features i {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 11;
}

.current {
    font-size: 1.3rem;
    color: var(--primary-gold);
}

.separator {
    opacity: 0.7;
}

.total {
    opacity: 0.7;
}

/* Ações de Serviços Reestruturada */
.services-actions-container {
    margin-top: 60px;
}

.services-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.action-button {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.btn-large {
    width: 100%;
    margin-bottom: 15px;
}

.action-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-list {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services-list h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
}

.services-checklist {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.services-checklist li {
    margin-bottom: 15px;
    padding-left: 10px;
    break-inside: avoid;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.services-checklist i {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px 15px;
    border-radius: 8px;
    background-color: var(--light-bg);
    transition: transform 0.3s;
}

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

.stat i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.stat h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stat p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

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

/* CTA Sections */
.cta-form {
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 148, 31, 0.95));
    position: relative;
}

.cta-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-form h2 {
    color: var(--dark-bg);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-info > p {
    margin-bottom: 30px;
    color: #555;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
}

.whatsapp-contact {
    margin-top: 30px;
}

.whatsapp-contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-map h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
}

.map-overlay i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-gold);
}

.footer-about p {
    color: #aaa;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-services h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-gold);
    bottom: 0;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact-item i {
    color: var(--primary-gold);
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a {
    color: var(--primary-gold);
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* WhatsApp Fixed Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    width: 180px;
    border-radius: 30px;
}

.whatsapp-float i {
    font-size: 2rem;
    position: absolute;
    left: 18px;
    transition: all 0.3s ease;
}

.whatsapp-text {
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    margin-left: 40px;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .slide-content {
        padding: 40px;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
    
    .services-slider {
        min-height: 500px;
    }
    
    .slide-image {
        flex: 0 0 50%;
        min-height: 500px;
    }
    
    .slide-content {
        flex: 0 0 50%;
    }
    
    .services-actions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-checklist {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--dark-bg);
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Services Slider Mobile */
    .service-slide.active {
        flex-direction: column;
    }
    
    .services-slider {
        min-height: auto;
    }
    
    .slide-image {
        flex: none;
        height: 300px;
        min-height: auto;
        width: 100%;
    }
    
    .slide-content {
        flex: none;
        width: 100%;
        padding: 40px 30px;
    }
    
    .image-controls {
        padding: 15px;
        gap: 20px;
    }
    
    .image-controls .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services {
        padding: 70px 0;
    }
    
    .services-actions-container {
        margin-top: 40px;
    }
    
    .action-button {
        padding: 25px;
    }
    
    .services-list {
        padding: 30px;
    }
    
    .services-list h3 {
        font-size: 1.6rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float:hover {
        width: 60px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .services, .about, .cta-form, .testimonials, .contact {
        padding: 70px 0;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h3 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .service-features span {
        font-size: 0.95rem;
    }
    
    .services-checklist li {
        font-size: 0.95rem;
    }
    
    .services-checklist {
        columns: 1;
    }
    
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    position: relative;
    width: 300px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-logo:hover .partner-overlay {
    transform: translateY(0);
}

.partner-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-gold);
}

.partner-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.partners-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.partners-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.partners-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.partners-benefits h3,
.partners-products h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits-list i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.benefits-list h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.benefits-list p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Correção para o botão dentro da lista de benefícios - NOVO */
.benefits-list .btn-partner {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    background-color: var(--dark-bg);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.benefits-list .btn-partner:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Garantir que o botão ocupe espaço completo no layout */
.benefits-list li:last-child {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.benefits-list li:last-child:hover {
    transform: none;
    box-shadow: none;
}

/* Remover padding e margin do último item da lista */
.benefits-list li:last-child > * {
    width: 100%;
}

/* Ajuste para manter a estética do botão na lista */
.benefits-list li:last-child i,
.benefits-list li:last-child > div {
    display: none;
}

/* Products Slider */
.partners-products {
    position: relative;
}

.products-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 25px;
}

.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-gold);
}

.product-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.partner-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.products-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.product-prev,
.product-next {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.product-prev:hover,
.product-next:hover {
    background-color: var(--light-gold);
    transform: scale(1.1);
}

.products-dots {
    display: flex;
    gap: 10px;
}

.product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.3);
}

/* Partners CTA */
.partners-cta {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.partners-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.partners-cta p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.btn-partner {
    background-color: var(--dark-bg);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-partner:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

.partners-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-slider {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 70px 0;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        width: 250px;
        height: 130px;
    }
    
    .partners-text h3 {
        font-size: 1.8rem;
    }
    
    .partners-text p {
        font-size: 1rem;
    }
    
    .benefits-list li {
        padding: 15px;
    }
    
    .benefits-list h4 {
        font-size: 1.1rem;
    }
    
    .partners-cta {
        padding: 40px 20px;
    }
    
    .partners-cta h3 {
        font-size: 1.8rem;
    }
    
    .partners-cta .btn {
        margin: 10px 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 100%;
        max-width: 300px;
    }
    
    .partners-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .products-slider {
        height: 300px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h4 {
        font-size: 1.2rem;
    }
    
    .partners-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}