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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1e3a5f;
    line-height: 1.8;
    background: white;
    overflow-x: hidden;
}

/* === HEADER / NAVEGAÇÃO === */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
}
.logo-image {
    height: 80px;
    width: auto;
    opacity: 0.92;
    transition: all 0.3s ease;
}

.logo-image:hover {
    opacity: 1;
    transform: scale(1.02);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1e3a5f;
    letter-spacing: 2px;
    transition: transform 0.3s;
}

.logo-text:hover {
    transform: scale(1.05);
}

.logo-text strong {
    font-weight: 700;
}
.nav-links a {
    color: #4a5568;
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}
.nav-links a:hover {
    color: #1e3a5f;
}
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5a7b;
    transition: width 0.3s;
}

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

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

/* === SEÇÃO HERO === */
.hero-minimal {
    padding: 180px 3rem 120px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 300;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content h1 strong {
    font-weight: 700;
    color: #2d5a7b;
    display: inline;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.9;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1e3a5f;
    font-weight: 500;
}

.benefit-item::before {
    content: '✓';
    background: #2d5a7b;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === BOTÕES === */
.cta-minimal {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid #1e3a5f;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.cta-minimal::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;
}

.cta-minimal:hover::before {
    left: 100%;
}

.cta-minimal:hover {
    background: white;
    color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

/* === SEÇÃO DE CONFIANÇA === */
.trust-section {
    padding: 60px 3rem;
    background: #f9fafb;
    text-align: center;
}

.trust-section p {
    color: #5a6c7d;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    font-size: 1.1rem;
    color: #1e3a5f;
    font-weight: 500;
    opacity: 0.7;
}

/* === SEÇÃO DE ESTATÍSTICAS === */
.stats-carousel {
    padding: 80px 3rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* === SEÇÃO DE SERVIÇOS COM CARROSSEL === */
.services-minimal {
    padding: 100px 3rem;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

/* Carrossel de Serviços */
.services-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 60px;
}

.services-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.services-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-slide {
    min-width: 100%;
    padding: 0 10px;
}

.service-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2d5a7b, #1e3a5f);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 90, 123, 0.15);
    border-color: #2d5a7b;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(45, 90, 123, 0.1);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(45, 90, 123, 0.05);
    border-radius: 12px;
}

.feature {
    color: #1e3a5f;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-result {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #2d5a7b, #1e3a5f);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.result-icon {
    font-size: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.service-cta:hover {
    background: #2d5a7b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* Setas do Carrossel */
.service-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a5f;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-arrow:hover {
    background: #2d5a7b;
    transform: translateY(-50%) scale(1.1);
}

.service-arrow.prev {
    left: 0;
}

.service-arrow.next {
    right: 0;
}

/* Dots do Carrossel */
.service-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-dot.active {
    background: #2d5a7b;
    transform: scale(1.3);
    border-color: #2d5a7b;
}

.service-dot:hover {
    background: #5a6c7d;
}

/* Grid Mobile (oculto no desktop) */
.services-grid-mobile {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-item-mobile {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #2d5a7b;
    transition: all 0.3s;
}

.service-item-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item-mobile .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item-mobile h3 {
    font-size: 1.2rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.service-item-mobile p {
    color: #2d5a7b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* === SEÇÃO DE PARCERIA === */
.partnership-section {
    padding: 100px 3rem;
    background: #f9fafb;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.partnership-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partnership-content h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.partnership-content h2 strong {
    color: #2d5a7b;
    font-weight: 700;
}

.partnership-content p {
    color: #5a6c7d;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.partnership-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #2d5a7b;
}

.feature-box h4 {
    color: #1e3a5f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

/* === CARROSSEL DE DEPOIMENTOS === */
.testimonials-carousel {
    padding: 100px 3rem;
    background: white;
    position: relative;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1e3a5f;
    margin-bottom: 1rem;
    text-align: center;
}

.carousel-subtitle {
    text-align: center;
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid #2d5a7b;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: #2d5a7b;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: #1e3a5f;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f, #2d5a7b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.3rem;
}

.testimonial-company {
    font-size: 0.95rem;
    color: #5a6c7d;
}

.testimonial-result {
    color: #2d5a7b;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #2d5a7b;
    transform: scale(1.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a5f;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #2d5a7b;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: -25px;
}

.carousel-arrow.next {
    right: -25px;
}

/* === SEÇÃO CTA === */
.cta-section {
    padding: 100px 3rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

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

.cta-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-section h2 strong {
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button-primary {
    padding: 1.2rem 3rem;
    background: white;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-secondary:hover {
    background: white;
    color: #1e3a5f;
    transform: translateY(-3px);
}

/* === SEÇÃO DE CONTATO === */
.contact-minimal {
    padding: 80px 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.contact-info-section p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border-left: 3px solid #2d5a7b;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item-label {
    font-size: 0.8rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 1.2rem;
    color: #1e3a5f;
    font-weight: 600;
}

.contact-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === FOOTER === */
footer {
    background: #1a2f4a;
    color: white;
    padding: 3rem;
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 300;
}

/* === BOTÕES FLUTUANTES === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e3a5f;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
    font-size: 1.5rem;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background: #2d5a7b;
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* === RESPONSIVO === */
@media (max-width: 968px) {
    .hero-minimal {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Ocultar carrossel e mostrar grid no mobile */
    .services-carousel-wrapper {
        display: none;
    }
    
    .service-dots {
        display: none;
    }
    
    .services-grid-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partnership-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .carousel-arrow {
        display: none;
    }

    .partnership-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid-mobile {
        grid-template-columns: 1fr;
    }
    
    .service-item-mobile {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 968px) {
    .services-carousel-wrapper {
        padding: 0 40px;
    }
    
    .service-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
/* ========================================
   SEÇÃO DE GARANTIAS E COMPROMISSOS
   ======================================== */

.guarantees-section {
    padding: 100px 3rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil */
.guarantees-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(45, 90, 123, 0.05), rgba(30, 58, 95, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.guarantees-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(45, 90, 123, 0.03), rgba(30, 58, 95, 0.03));
    border-radius: 50%;
    z-index: 0;
}

.guarantees-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.guarantees-container h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.guarantees-container h2 strong {
    font-weight: 700;
    color: #2d5a7b;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Grid de Garantias */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Card Individual */
.guarantee-card {
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #2d5a7b;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no hover */
.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 90, 123, 0.1), transparent);
    transition: left 0.5s;
}

.guarantee-card:hover::before {
    left: 100%;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 90, 123, 0.15);
    border-left-width: 6px;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Delay diferente para cada ícone */
.guarantee-card:nth-child(1) .guarantee-icon { animation-delay: 0s; }
.guarantee-card:nth-child(2) .guarantee-icon { animation-delay: 0.2s; }
.guarantee-card:nth-child(3) .guarantee-icon { animation-delay: 0.4s; }
.guarantee-card:nth-child(4) .guarantee-icon { animation-delay: 0.6s; }
.guarantee-card:nth-child(5) .guarantee-icon { animation-delay: 0.8s; }
.guarantee-card:nth-child(6) .guarantee-icon { animation-delay: 1s; }

.guarantee-card h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-card p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
}

/* Badge de Confiança */
.trust-badge-section {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 4rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
    border-radius: 15px;
    color: white;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(30, 58, 95, 0.3);
    transition: all 0.3s;
}

.trust-badge-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.4);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.badge-content {
    text-align: left;
}

.badge-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.badge-content p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* === RESPONSIVO === */
@media (max-width: 968px) {
    .guarantees-section {
        padding: 80px 2rem;
    }
    
    .guarantees-container h2 {
        font-size: 2.5rem;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-badge-card {
        padding: 2rem 2.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .badge-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .guarantees-section {
        padding: 60px 1.5rem;
    }
    
    .guarantees-container h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-card {
        padding: 2rem;
    }
    
    .guarantee-icon {
        font-size: 2.5rem;
    }
    
    .guarantee-card h3 {
        font-size: 1.3rem;
    }
    
    .trust-badge-card {
        padding: 2rem;
    }
    
    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .badge-content h4 {
        font-size: 1.2rem;
    }
    
    .badge-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .guarantees-container h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-card {
        padding: 1.5rem;
    }
    
    .guarantee-card h3 {
        font-size: 1.2rem;
    }
}