:root {
    --gold-dark: #000000;
    --gold: #c89116;
    --gold-gradient: linear-gradient(90deg, #000000, #c89116);

    --primary-color: var(--gold);
    --primary-dark: #8a6a11;
    --accent-color: #e8b85a;

    --text-color: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --font-main: 'Outfit', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(200, 145, 22, 0.3);

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 10px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gold-gradient);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #c89116, #000000);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('https://www.garantiaseg.com.br/wp-content/webp-express/webp-images/uploads/2024/07/Plano-de-Saude-RJ-1.jpg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--text-light);
    text-align: center;
}

.hero-content p {
    margin-bottom: 64px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.section-title {
    margin-bottom: 30px;
    position: relative;
    display: block;
    text-align: center;
}

.section-title h2 {
    font-size: 2.7rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 145, 22, 0.6);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.differentials {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 80px 0;
}



.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diff-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: var(--transition);
}

.diff-item:hover {
    background: var(--gold-gradient);
    transform: scale(1.05);
}

.diff-item h3,
.diff-item p,
.diff-item i {
    transition: var(--transition);
}

.diff-item:hover h3,
.diff-item:hover p,
.diff-item:hover i {
    color: #ffffff;
}

.diff-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonials {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 145, 22, 0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title h2 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.testimonial-card p.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-card .client-name {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card i,
.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.partners {
    background-color: var(--bg-white);
    padding: 60px 0;
}

/* Partners Section Update */
/* Partners Section Update */
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.partners-logo-item {
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.4s ease;
}

.partners-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.partners-logo-item:hover {
    transform: translateY(-5px);
}

.partners-logo-item:hover img {
    filter: grayscale(0%) opacity(1) drop-shadow(0 8px 15px rgba(200, 145, 22, 0.5));
    transform: scale(1.1);
}

/* CTA Section Revamp */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 100px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 145, 22, 0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-align: left;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-benefits i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Modern Form */
.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    outline: none;
}

.submit-btn {
    margin-top: 10px;
    padding: 18px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 145, 22, 0.4);
}

footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 50px 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }


    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .services-grid,
    .diff-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text h2 {
        text-align: center;
    }

    .cta-benefits {
        display: inline-block;
        text-align: left;
    }

    .btn {
        width: 100%;
    }
}

/* Google Reviews Badge */
.google-reviews-header {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google-badge-container {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-logo-img {
    height: 24px;
    width: auto;
}

.google-rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-rating-stars span {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    margin-right: 5px;
}

.google-rating-stars i {
    color: #fbbc05;
    /* Google Star Color */
    font-size: 0.9rem;
}

.google-ref-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer Updates */
.footer-section-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
}

.footer-social-icons a:hover {
    background: var(--gold-gradient);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(200, 145, 22, 0.3);
}

.footer-senra-info {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-senra-text {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-cnpj {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Senra Logo Styling */
.footer-senra-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.senra-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make it white initially if it's dark, or adjust opacity */
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.footer-senra-container:hover .senra-logo {
    filter: brightness(1) invert(0);
    /* Return to original colors on hover */
    opacity: 1;
    transform: scale(1.05);
}

.footer-senra-text {
    margin-bottom: 5px;
    /* Adjust margin since logo is there now */
}

/* === Senra Showcase Section Styles === */
.senra-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.senra-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.senra-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 145, 22, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    align-self: flex-start;
    border: 1px solid rgba(200, 145, 22, 0.2);
}

.badge-trust i {
    font-size: 1rem;
    color: var(--gold);
}

.senra-intro h2 {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
}

.divider-gold {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin-bottom: 30px;
}

.senra-intro p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.senra-intro strong {
    color: #000;
    font-weight: 700;
}

.highlight-text {
    font-style: italic;
    color: #333 !important;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.trust-stats {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual Card */
.senra-visual-card {
    position: relative;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.senra-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(200, 145, 22, 0.15);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(200, 145, 22, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.senra-logo-main {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.senra-visual-card:hover .senra-logo-main {
    transform: scale(1.05);
}

.card-footer-text {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.card-footer-text span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
}

.card-footer-text .stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

@media (max-width: 992px) {
    .senra-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .senra-intro {
        align-items: center;
    }

    .badge-trust {
        align-self: center;
    }

    .trust-stats {
        justify-content: center;
    }

    .highlight-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .senra-intro h2 {
        font-size: 2.2rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .senra-visual-card {
        padding: 30px;
    }

    .senra-logo-main {
        width: 200px;
    }
}