/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    --primary-blue: #151956;
    --light-blue: #1f2380;
    --accent-gold: #b5942a;
    --dark-gold: #9a7e24;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --light-gray: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(21, 25, 86, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(21, 25, 86, 0.12);
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform: scale(1.3);
    transform-origin: left center;
    margin-left: 0.5rem;
}

.logo-img:hover {
    transform: scale(1.35);
    transform-origin: left center;
}

/* Fallback text logo (caso a imagem não carregue) */
.logo-text {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.8rem;
}

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

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

.nav-menu a:not(.btn-client-area) {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:not(.btn-client-area):hover,
.nav-menu a:not(.btn-client-area).active {
    color: var(--primary-blue);
    background: rgba(21, 25, 86, 0.05);
    transform: translateY(-1px);
}

.nav-menu a:not(.btn-client-area)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:not(.btn-client-area):hover::after,
.nav-menu a:not(.btn-client-area).active::after {
    width: 60%;
}

/* Client Area Button - Reset all inherited styles */

.btn-client-area {
    all: unset;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(181, 148, 42, 0.25);
    border: 1px solid transparent;
    white-space: nowrap;
    margin-left: 0.5rem;
}

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

.btn-client-area:hover::before {
    left: 100%;
}

.btn-client-area:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(181, 148, 42, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
}

.btn-client-area:active {
    transform: translateY(0);
}

.btn-client-area i {
    margin-right: 0.4rem;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.btn-client-area span {
    position: relative;
    z-index: 2;
}

/* Promotional Auto Insurance Button - Same style as regular menu buttons */
.btn-promo {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    overflow: visible;
}

.btn-promo:hover {
    color: var(--primary-blue);
    background: rgba(21, 25, 86, 0.05);
    transform: translateY(-1px);
}

/* Add the same bottom line effect as other menu items */
.btn-promo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-promo:hover::after {
    width: 60%;
}

.btn-promo i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    animation: icon-bounce 2s ease-in-out infinite;
    color: var(--accent-gold);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -8px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.35rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(181, 148, 42, 0.3);
    animation: badge-pulse 2.5s ease-in-out infinite;
    z-index: 10;
}

/* Animations */
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-1px) scale(1.05);
    }
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.dropdown {
    position: relative;
}

/* Dropdown arrow styling (uses Font Awesome icon in HTML) */
.dropdown > a i {
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Ensure dropdown doesn't overflow */
.dropdown:last-of-type .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 250px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop dropdown behavior */
@media (min-width: 1025px) {
    .dropdown-menu {
        display: block;
    }
}

.dropdown-menu li {
    padding: 0.2rem 0;
    list-style: none;
}

.dropdown-menu a {
    color: var(--text-gray);
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    display: block;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    color: var(--primary-blue);
    background: rgba(21, 25, 86, 0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(circle at 20% 80%, rgba(181, 148, 42, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(31, 35, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(21, 25, 86, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s infinite linear;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(181, 148, 42, 0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px;
    animation: drift 30s infinite linear;
    pointer-events: none;
}

/* Animated Light Ray */
.hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        rgba(181, 148, 42, 0.05),
        rgba(255, 255, 255, 0.03),
        transparent
    );
    animation: lightSweep 8s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes lightSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-60px) rotate(360deg); }
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -100px) rotate(360deg); }
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text h1 br + span {
    display: inline-block;
    min-height: 4.2rem;
    vertical-align: top;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Typewriter Effect Styles */
.typewriter-fixed {
    color: var(--white);
    transition: all 0.4s ease;
}

#main-word {
    transition: filter 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #c4c4c4 0%,
        #f8f8f8 25%,
        #ffffff 50%,
        #f8f8f8 75%,
        #c4c4c4 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: silverShine 3s ease-in-out infinite;
}

#main-word.changing {
    filter: blur(8px);
    transform: scale(0.95);
    opacity: 0.7;
}

@keyframes silverShine {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

.fixed-que {
    color: var(--white);
}

.typewriter-line {
    display: inline-block;
    min-height: 4.2rem;
    line-height: 1.2;
    vertical-align: top;
}

.typewriter-text {
    color: var(--accent-gold);
    display: inline;
    min-width: 0;
    line-height: 1.2;
}

.typewriter-cursor {
    color: var(--accent-gold);
    animation: blink 1s infinite;
    font-weight: 400;
    margin-left: 2px;
    display: inline;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}



.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 148, 42, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    opacity: 0.1;
}



/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 25, 86, 0.1), transparent);
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Solutions Section */
.solutions {
    background: var(--light-gray);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.solution-card {
    /* Estilo base movido para sistema unificado */
    padding: 2.5rem;
    text-align: center;
}

/* Removido - usando novo sistema unificado */

.card-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.solution-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--accent-gold);
}

/* Methodology Section */
.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: var(--accent-gold);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.step-content p {
    color: var(--text-gray);
}

/* Social Proof Section */
.social-proof {
    background: var(--light-gray);
}

/* Partners Tabs */
.partners-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-button {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 150px;
    text-align: center;
}

.tab-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow);
}

/* Partners Content */
.partners-content {
    position: relative;
    min-height: 300px;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

.partner-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* Vertical Scrolling Effect for Insurers */
.insurers-scroll-container {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.insurers-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scrollVertical 20s linear infinite;
}

.insurer-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    flex-shrink: 0;
}

.insurer-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.insurer-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.insurer-logo img,
.insurer-img {
    max-width: 50px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.insurer-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.insurer-info p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollVerticalOperadoras {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Different animation speed for operadoras */
#operadoras .insurers-scroll-content {
    animation: scrollVerticalOperadoras 25s linear infinite;
}

/* Duplicate content for seamless loop */
.insurers-scroll-content::after {
    content: '';
    display: block;
    height: 100%;
}

.solutions-cta {
    text-align: center;
    margin-top: 3rem;
}

.solutions-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.solutions-cta .btn-primary i {
    font-size: 1.1rem;
}

.partners-cta {
    text-align: center;
    margin-top: 3rem;
}

.partners-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.partners-cta .btn-primary i {
    font-size: 1.1rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.blog-image {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--primary-blue);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.cta-form input,
.cta-form select {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 148, 42, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: white;
}

.btn-cta-secondary i {
    font-size: 1.1rem;
}

/* CTA Info */
.cta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.info-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-info {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0 2rem;
}

/* Footer About Section */
.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    filter: brightness(1.1);
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links Section */
.footer-links h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1rem;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 1.5rem;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-link-special {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Footer Contact Section */
.footer-contact h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.contact-item i {
    width: 18px;
    color: var(--accent-gold);
    font-size: 1rem;
}

.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a:hover {
    color: var(--accent-gold);
    transform: translateX(2px);
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

.btn-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.btn-footer-whatsapp i {
    font-size: 1.1rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4af37 100%);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #a0aec0;
    font-size: 0.85rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links-bottom a:hover {
    color: var(--accent-gold);
}

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

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

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

.whatsapp-float a {
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover::before {
    transform: scale(1);
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a:active {
    transform: scale(0.95);
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Dropdown mobile adjustments */
    .dropdown {
        position: static;
    }
    
    .dropdown > a i {
        font-size: 0.8rem;
        margin-left: 0.3rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        background: rgba(245, 245, 245, 0.95);
        margin: 0.25rem 0 0.5rem 0;
        border-radius: 8px;
        min-width: auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-left: 3px solid var(--accent-gold);
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        margin: 0;
        font-size: 0.9rem;
    }
    
    /* Hide dropdown by default on mobile */
    .dropdown-menu {
        display: none;
    }
    
    /* Show when active on mobile */
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Remove bullets from dropdown items on mobile */
    .dropdown-menu li {
        list-style: none !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    


    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* Aumentar tamanho de todo o texto da hero em telas médias */
    .typewriter-fixed {
        font-size: 1.05em;
    }
    
    .fixed-que {
        font-size: 1.05em;
    }
    
    #main-word {
        font-size: 1.05em;
    }
    
    .typewriter-text {
        font-size: 1.05em;
    }
    
    .typewriter-line {
        min-height: 3rem;
    }

    .hero-graphic {
        font-size: 8rem;
    }
    


    .section-title {
        font-size: 2rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

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

    /* Footer Responsivo */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0 1.5rem;
    }
    
    .footer-about {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 55px;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        max-width: 120px;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        text-align: center;
        font-size: 1rem;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links ul li a {
        justify-content: center;
        padding-left: 0;
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        padding-left: 0;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-cta {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links-bottom {
        gap: 1.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 40px;
        max-width: 200px;
        transform: scale(1.45);
        transform-origin: left center;
        margin-left: 0.3rem;
    }
    
    .btn-client-area {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin-left: 0.5rem;
    }

    .btn-promo {
        padding: 0.5rem 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .btn-promo i {
        margin-right: 0.4rem;
        font-size: 0.85rem;
    }

    .discount-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.25rem;
        top: -8px;
        right: -6px;
        border-radius: 8px;
    }

    /* Partners Mobile Styles */
    .partners-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem;
        font-size: 1rem;
    }

    .insurers-scroll-container {
        height: 300px;
        padding: 1rem;
    }

    .insurer-item {
        padding: 1rem;
        min-height: 70px;
    }

    .insurer-logo {
        width: 50px;
        height: 50px;
    }

    .insurer-logo img {
        max-width: 40px;
        max-height: 30px;
    }

    .insurer-info h4 {
        font-size: 1rem;
    }

    .insurer-info p {
        font-size: 0.8rem;
    }

    .partner-img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Auto Insurance Page Styles */
.auto-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s infinite linear;
}

.auto-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-highlight {
    margin-bottom: 2rem;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.auto-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(181, 148, 42, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-quick {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.hero-insurers {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
}

.insurers-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.insurer-logo-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insurer-logo-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.hero-insurer-img {
    height: 24px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    filter: saturate(0.7) brightness(1.1) opacity(0.9);
    transition: all 0.3s ease;
}

.insurer-logo-item:hover .hero-insurer-img {
    filter: saturate(1) brightness(1) opacity(1);
}

.more-insurers {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.8);
    color: var(--white);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    font-weight: 500;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 50px;
}

.more-insurers:hover {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.9);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(181, 148, 42, 0.3);
    animation: gentle-bounce 3s ease-in-out infinite;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 148, 42, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-form-container {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
    border-radius: 17px;
    z-index: -1;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.vehicle-type-selector {
    margin-bottom: 1rem;
}

.vehicle-type-selector label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.vehicle-option {
    position: relative;
    cursor: pointer;
}

.vehicle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

.vehicle-option input[type="radio"]:checked + .option-content {
    border-color: var(--accent-gold);
    background: rgba(181, 148, 42, 0.1);
}

.option-content i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.vehicle-option input[type="radio"]:checked + .option-content i {
    color: var(--accent-gold);
}

.auto-quote-form .form-group {
    margin-bottom: 0.75rem;
}

.auto-quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.auto-quote-form input,
.auto-quote-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auto-quote-form input:focus,
.auto-quote-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(181, 148, 42, 0.3);
}



/* Animations */
@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auto-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auto-hero .hero-text {
        text-align: center;
    }
    
    .auto-hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .auto-hero p {
        text-align: center;
    }
    
    .vehicle-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .option-content {
        padding: 0.75rem 0.5rem;
    }
    
    .option-content i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .option-content span {
        font-size: 0.85rem;
    }

    .hero-insurers {
        margin: 1.5rem 0;
        padding: 0.5rem 0;
        text-align: center;
    }

    .insurers-logos {
        gap: 1rem;
        justify-content: center;
    }

    .insurer-logo-item {
        padding: 0.6rem 0.8rem;
    }

    .hero-insurer-img {
        height: 32px;
        max-width: 80px;
    }

    .more-insurers {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .quick-quote-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    min-height: 40vh;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: var(--light-gray);
    border-radius: 16px;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Mission Values Section */
.mission-values {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mvv-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card ul li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card ul li:before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social a {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--accent-gold);
}

/* Differentials Section */
.differentials {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.differential-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.differential-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.differential-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.differential-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Solutions Detail Styles */
.why-choose {
    padding: 80px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.why-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--text-gray);
    font-weight: 500;
}

.solutions-detail {
    background: var(--light-gray);
    padding: 80px 0;
}

.solution-card-detail {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.solution-card-detail:hover {
    transform: translateY(-5px);
}

.card-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.card-content {
    padding: 2rem;
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-step .step-number {
    background: var(--accent-gold);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    background: var(--light-gray);
    padding: 80px 0;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    background: var(--accent-gold);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.method-info p {
    margin: 0.25rem 0;
    font-size: 1rem;
    color: var(--primary-dark);
}

.method-info p a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.method-info p a:hover {
    color: var(--accent-gold);
    transform: translateX(2px);
}

.method-info p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.method-info p a:hover::after {
    width: 100%;
}

.method-info span {
    font-size: 0.85rem;
    color: #666;
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* Message Styles */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading button styles */
.btn-form-submit:disabled,
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-gray);
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

/* Map Section */
.map-section {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-details {
    display: grid;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    width: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-item h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.map-container {
    background: var(--white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.map-container iframe {
    border-radius: 12px;
    width: 100%;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Blog Styles */
.featured-article {
    padding: 80px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
}

.article-image {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    font-size: 4rem;
}

.article-category {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.featured-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-articles {
    background: var(--light-gray);
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.article-card .card-image {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    font-size: 3rem;
}

.article-card .card-content {
    padding: 2rem;
}

.article-card .article-category {
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-card .article-meta {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.article-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--dark-gold);
}

.blog-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.category-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-count {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Focus Message Section */
.focus-message {
    background: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.focus-content {
    max-width: 800px;
    margin: 0 auto;
}

.focus-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.focus-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.focus-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Service Pages Styles */
.service-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-benefits {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

/* Removido - usando padronização */

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

.coverage {
    padding: 80px 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.coverage-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coverage-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coverage-category h3 i {
    color: var(--accent-gold);
}

.coverage-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.coverage-category ul {
    list-style: none;
}

.coverage-category ul li {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.coverage-category ul li:before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.health-partners {
    background: var(--light-gray);
    padding: 80px 0;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-detail {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.partner-detail .partner-logo {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.partner-detail p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.partner-features span {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-process {
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gold);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    background: var(--accent-gold);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Dental and Life Insurance Specific Styles */
.dental-importance,
.life-importance {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.importance-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.importance-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.importance-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.importance-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.importance-item strong {
    color: var(--primary-blue);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .why-content,
    .contact-content,
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .mvv-grid,
    .team-grid,
    .differentials-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .focus-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-secondary,
    .btn-primary {
        text-align: center;
        min-width: 200px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .featured-text h2 {
        font-size: 1.8rem;
    }

    .newsletter-text h2,
    .focus-content h2 {
        font-size: 2rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
    }

    .overview-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .benefits-grid,
    .coverage-grid,
    .partners-showcase,
    .importance-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 15px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    /* Location responsive */
    .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-item {
        padding: 1rem;
    }

    .location-item h4 {
        font-size: 1rem;
    }

    .location-item i {
        font-size: 1.25rem;
    }

    .map-container {
        padding: 0.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
    
    /* Aumentar tamanho de todo o texto da hero em telas menores */
    .typewriter-fixed {
        font-size: 1.1em;
    }
    
    .fixed-que {
        font-size: 1.1em;
    }
    
    #main-word {
        font-size: 1.1em;
    }
    
    .typewriter-text {
        font-size: 1.1em;
    }
    
    .typewriter-cursor {
        font-size: 0.9em;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .solution-card,
    .cta-form,
    .contact-form-container {
        padding: 2rem;
    }

    .about-text h2,
    .why-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }
    
    /* Client Area Button Mobile */
    .btn-client-area {
        margin-left: 0;
        margin-top: 1rem;
        width: calc(100% - 2rem);
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Ajuste para telas muito pequenas */
    .protection-scene {
        width: 380px;
        height: 380px;
        max-width: 90vw;
        max-height: 90vw;
    }
    
    .protection-shield {
        width: 90px;
        height: 90px;
    }
    
    .shield-img {
        max-width: 90px;
        max-height: 90px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .circle-1 { width: 160px; height: 160px; }
    .circle-2 { width: 220px; height: 220px; }
    .circle-3 { width: 300px; height: 300px; }
    
    .benefit-badge {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .badge-number {
        font-size: 1.1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}

/* === SEGURO AUTO PAGE STYLES === */

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.benefits-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefits-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.main-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Removido - usando padronização */

.benefit-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.highlight-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    margin-top: 2rem;
    text-align: center;
}

.process-section h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Coverage Section */
.coverage-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.coverage-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.coverage-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.coverage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.coverage-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coverage-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Estilos para ícones dos cards de cobertura */
.coverage-header i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.coverage-card:hover .coverage-header i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.coverage-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.2rem !important;
}

.coverage-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.feature-item i {
    color: var(--success-green);
    font-size: 1rem;
}

.coverage-price {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
}

.btn-coverage {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-coverage:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-coverage.primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.btn-coverage.primary:hover {
    box-shadow: 0 8px 20px rgba(51, 102, 153, 0.4);
}

.coverage-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #856404;
    font-size: 0.9rem;
}

/* New Coverage Items Structure */
.coverage-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.coverage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.coverage-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(51, 102, 153, 0.3);
}

.coverage-content {
    flex: 1;
}

.coverage-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
}

.coverage-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coverage-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.detail-badge:hover {
    background: var(--accent-gold);
    color: var(--white);
}

.coverage-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.coverage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Correção específica para texto na seção coverage-cta da página seguro-auto */
.coverage-cta .cta-content p {
    color: var(--primary-blue) !important;
}

.btn-coverage-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-coverage-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Responsive adjustments for coverage items */
@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coverage-card {
        padding: 2rem;
    }
    
    .coverage-header i {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .coverage-header h3 {
        font-size: 1.3rem;
    }
    
    .coverage-subtitle {
        font-size: 0.85rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .coverage-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .coverage-icon {
        align-self: center;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .coverage-details {
        justify-content: center;
    }
    
    .coverage-cta {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .btn-coverage-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.why-choose-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.why-choose-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.advantage-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.advantage-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.advantage-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.trust-item {
    padding: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Trust Grid para página outros-seguros */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.testimonials-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

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

.testimonial-content .stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-content .stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Generic CTA button styles for other pages */
.final-cta-section .btn-cta-primary,
.final-cta-section .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-section .btn-cta-primary {
    background: var(--accent-gold);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta-section .btn-cta-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 148, 42, 0.4);
}

.final-cta-section .btn-cta-secondary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.final-cta-section .btn-cta-secondary:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.guarantee-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-benefits-grid,
    .coverage-grid,
    .advantages-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card.primary,
    .coverage-card.featured {
        transform: none;
    }
    
    .benefit-card.primary:hover,
    .coverage-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Centralizar ícones e texto da seção "Vantagens Exclusivas AMTBX" apenas no mobile */
    .advantage-item .advantage-icon {
        margin: 0 auto 1rem auto;
    }
    
    .advantage-item .advantage-content {
        text-align: center;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .benefits-section .section-header h2,
    .coverage-section .section-header h2,
    .why-choose-section .section-header h2,
    .testimonials-section .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Hero Illustration - Interactive Protection Scene */
/* Insurance Companies Section */
.insurance-companies-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.insurance-companies-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.insurance-companies-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.insurance-companies-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.insurance-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.insurance-company {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.insurance-company:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.company-logo i {
    font-size: 2rem;
    color: white;
}

.insurance-company:hover .company-logo {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    transform: scale(1.1);
}

.insurance-company h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.insurance-company p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.company-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.rating-text {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(31, 35, 128, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.see-all-companies {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-see-all-companies {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 35, 128, 0.3);
}

.btn-see-all-companies:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 35, 128, 0.4);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
}

.btn-see-all-companies i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .btn-see-all-companies {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        gap: 0.6rem;
    }
    
    .btn-see-all-companies i {
        font-size: 1rem;
    }
}

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

.companies-benefits h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.companies-benefits .benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.companies-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.companies-benefits .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.companies-benefits .benefit-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.companies-benefits .benefit-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .insurance-companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insurance-company {
        padding: 1.5rem;
    }
    
    .insurance-companies-section .section-header h2 {
        font-size: 2rem;
    }
    
    .companies-benefits .benefits-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .companies-benefits h3 {
        font-size: 1.5rem;
    }
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.protection-scene {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Protection Shield */
.protection-shield {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 10px 20px rgba(31, 35, 128, 0.3));
    animation: shieldPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
    max-width: 120px;
    max-height: 120px;
}

.shield-img:hover {
    filter: drop-shadow(0 15px 30px rgba(31, 35, 128, 0.5)) brightness(1.1);
    transform: scale(1.05);
}





.shield-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(181, 148, 42, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
    z-index: -1;
}

/* Floating Health Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.floating-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-icon:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Icon Positioning and Colors */
.health-icon-1 {
    bottom: 15%;
    right: 15%;
    color: #e74c3c;
    animation: float1 6s ease-in-out infinite;
    z-index: 15;
}

.health-icon-2 {
    top: 10%;
    right: 20%;
    color: #3498db;
    animation: float2 7s ease-in-out infinite;
}

.health-icon-3 {
    top: 45%;
    left: 5%;
    color: #f39c12;
    animation: float3 5s ease-in-out infinite;
}

.health-icon-4 {
    top: 30%;
    right: 8%;
    color: #9b59b6;
    animation: float4 8s ease-in-out infinite;
}

.health-icon-5 {
    bottom: 25%;
    left: 18%;
    color: #27ae60;
    animation: float5 6.5s ease-in-out infinite;
}

.health-icon-6 {
    top: 30%;
    left: 28%;
    color: #e67e22;
    animation: float6 7.5s ease-in-out infinite;
}

.health-icon-7 {
    top: 12%;
    left: 18%;
    color: #2c3e50;
    animation: float7 6.5s ease-in-out infinite;
    z-index: 3;
}

.health-icon-8 {
    top: 55%;
    right: 25%;
    color: #3498db;
    animation: float2 8s ease-in-out infinite;
}

/* Protection Circles */
.protection-circle {
    position: absolute;
    border: 2px solid rgba(181, 148, 42, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 25s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-reverse 30s linear infinite;
    border-color: rgba(31, 35, 128, 0.2);
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 35s linear infinite;
    border-color: rgba(181, 148, 42, 0.15);
    border-style: dashed;
}

/* Benefit Badges */
.benefit-badge {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(181, 148, 42, 0.3);
    animation: badgeFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(181, 148, 42, 0.5);
}

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

.badge-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
}

.badge-1 {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: 25%;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

/* Interactive Elements */
.interactive-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.element-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(181, 148, 42, 0.5);
}

.dot-1 {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 25%;
    right: 35%;
    animation-delay: 0.6s;
}

.dot-3 {
    bottom: 35%;
    left: 25%;
    animation-delay: 1.2s;
}

.dot-4 {
    bottom: 30%;
    right: 30%;
    animation-delay: 1.8s;
}

.dot-5 {
    top: 50%;
    right: 20%;
    animation-delay: 2.4s;
}

/* Animations */
@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}



@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(-2deg); }
    66% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40% { transform: translateY(-12px) rotate(1.5deg); }
    80% { transform: translateY(-22px) rotate(-1deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    30% { transform: translateY(-16px) rotate(-1.5deg); }
    60% { transform: translateY(-6px) rotate(2deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-14px) rotate(1deg); }
    75% { transform: translateY(-18px) rotate(-2deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    35% { transform: translateY(-20px) rotate(1.5deg); }
    70% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40% { transform: translateY(-16px) rotate(-1.5deg); }
    80% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

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

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .protection-scene {
        width: 480px;
        height: 480px;
        max-width: 75vw;
        max-height: 75vw;
    }
}

@media (max-width: 768px) {
    .protection-scene {
        width: 450px;
        height: 450px;
        max-width: 85vw;
        max-height: 85vw;
    }
    
    .protection-shield {
        width: 100px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .shield-img {
        max-width: 100px;
        max-height: 100px;
    }
    
    .floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .circle-1 { width: 180px; height: 180px; }
    .circle-2 { width: 250px; height: 250px; }
    .circle-3 { width: 350px; height: 350px; }
    
    .benefit-badge {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

/* Partners Page Specific Styles */

/* Partners Intro Section */
.partners-intro {
    padding: 4rem 0;
    background: rgba(31, 35, 128, 0.02);
}

.intro-content h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro-content p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 35, 128, 0.1);
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(31, 35, 128, 0.15);
}

.criteria-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.criteria-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), #f7c52d);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.criteria-item:hover .criteria-icon::before {
    opacity: 1;
}

.criteria-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.criteria-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.criteria-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Detailed Companies Section */
.detailed-companies-section {
    padding: 5rem 0;
}

.detailed-companies-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.detailed-companies-section .section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detailed-companies-section .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.company-detail {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid rgba(31, 35, 128, 0.05);
    transition: all 0.3s ease;
}

.company-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 35, 128, 0.15);
}

.company-header {
    display: flex;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(31, 35, 128, 0.02), rgba(31, 35, 128, 0.05));
    border-bottom: 1px solid rgba(31, 35, 128, 0.1);
    gap: 2rem;
}

.company-logo-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-info h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 2.5rem;
}

.company-description h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.company-description h4:first-child {
    margin-top: 0;
}

.company-description p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.products-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.products-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(31, 35, 128, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.products-list li:hover {
    background: rgba(31, 35, 128, 0.05);
    transform: translateX(5px);
}

.products-list li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
}

.benefits-grid .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 184, 86, 0.05), rgba(220, 184, 86, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.benefits-grid .benefit-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(220, 184, 86, 0.1), rgba(220, 184, 86, 0.15));
}

.benefits-grid .benefit-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.benefits-grid .benefit-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-numbers {
    background: linear-gradient(135deg, rgba(31, 35, 128, 0.05), rgba(31, 35, 128, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(31, 35, 128, 0.1);
}

.contact-numbers .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(31, 35, 128, 0.1);
}

.contact-numbers .contact-item:last-child {
    border-bottom: none;
}

.contact-numbers .contact-item i {
    color: var(--primary-blue);
    width: 20px;
    font-size: 1.1rem;
}

.contact-numbers .contact-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-numbers .contact-item strong {
    color: var(--primary-blue);
}

/* Why Partner Section */
.why-partner-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
}

.why-partner-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.why-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-reason {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-reason:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reason-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-reason:hover .reason-icon::before {
    opacity: 0.2;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.partner-reason h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-reason p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Mobile Responsiveness for Partners Page */
@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .criteria-item {
        padding: 1.5rem 1rem;
    }
    
    .criteria-icon {
        width: 60px;
        height: 60px;
    }
    
    .criteria-icon i {
        font-size: 1.5rem;
    }
    
    .detailed-companies-section .section-header h2 {
        font-size: 2rem;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .company-logo-large {
        width: 100px;
        height: 100px;
    }
    
    .company-info h3 {
        font-size: 1.5rem;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .products-list {
        grid-template-columns: 1fr;
    }
    
    .why-partner-section h2 {
        font-size: 2rem;
    }
    
    .why-partner-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-reason {
        padding: 1.5rem 1rem;
    }
} 

/* Compact Coverage Grid */
.coverage-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.coverage-card {
    /* Estilo base movido para sistema unificado */
    padding: 1.5rem;
    text-align: center;
}

/* Removido - usando novo sistema unificado */

.coverage-card .coverage-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.coverage-card:hover .coverage-icon {
    transform: scale(1.1);
}

.coverage-card .coverage-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.coverage-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.coverage-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .coverage-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .coverage-card {
        padding: 1rem;
    }
    
    .coverage-card .coverage-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .coverage-card .coverage-icon i {
        font-size: 1.25rem;
    }
    
    .coverage-card h3 {
        font-size: 1rem;
    }
    
    .coverage-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .coverage-grid-compact {
        gap: 0.75rem;
    }
    
    .coverage-card {
        padding: 0.875rem;
    }
    
    .coverage-card h3 {
        font-size: 0.95rem;
    }
    
    .coverage-card p {
        font-size: 0.8rem;
    }
}

/* ========================================= */
/* === SISTEMA UNIFICADO DE CARDS UX 2.0 === */
/* ========================================= */

/* 🎨 BASE: Estilo fundacional para todos os cards */
.solution-card,
.benefit-card,
.coverage-card,
.partner-card,
.team-member,
.mvv-card,
.article-card,
.category-card,
.solution-card-detail,
.insurance-company,
.criteria-item,
.company-detail,
.partner-reason,
.advantage-item,
.importance-item,
.process-step,
.testimonial-item {
    /* Reset de conflitos */
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    background: var(--white) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    
    /* Sombra base moderna */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* ✨ HOVER PADRÃO: Efeito elegante e moderno */
.solution-card:hover,
.benefit-card:hover,
.coverage-card:hover,
.partner-card:hover,
.team-member:hover,
.mvv-card:hover,
.article-card:hover,
.category-card:hover,
.solution-card-detail:hover,
.insurance-company:hover,
.criteria-item:hover,
.company-detail:hover,
.partner-reason:hover,
.advantage-item:hover,
.importance-item:hover,
.process-step:hover,
.testimonial-item:hover {
    transform: translateY(-8px) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04),
                0 0 0 1px var(--primary-blue) !important;
}

/* 🥇 CARDS PREMIUM: Para destaques especiais */
.solution-card.primary,
.benefit-card.primary,
.coverage-card.featured,
.solution-card-detail.primary {
    background: linear-gradient(135deg, #fefefe 0%, #f8f9ff 100%) !important;
    border: 2px solid var(--primary-blue) !important;
    position: relative !important;
}

.solution-card.primary::before,
.benefit-card.primary::before,
.coverage-card.featured::before,
.solution-card-detail.primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue)) !important;
    border-radius: 16px 16px 0 0 !important;
}

.solution-card.primary:hover,
.benefit-card.primary:hover,
.coverage-card.featured:hover,
.solution-card-detail.primary:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 25px 50px -12px rgba(21, 25, 86, 0.25),
                0 0 0 1px var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

/* 🔸 CARDS COMPACTOS: Para grids densas */
.coverage-card.compact {
    border-radius: 12px !important;
    padding: 1.25rem !important;
}

.coverage-card.compact:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.coverage-card.compact:hover .coverage-icon,
.coverage-card.compact:hover .benefit-icon,
.coverage-card.compact:hover .card-icon {
    transform: scale(1.1) !important;
}

/* 🎯 ÍCONES: Animações suaves e consistentes */
.card-icon,
.coverage-icon,
.benefit-icon,
.advantage-icon,
.criteria-icon,
.importance-icon,
.company-logo,
.method-icon,
.reason-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 🚫 REMOVER bordas douradas conflitantes */
.solution-card::before,
.coverage-card::before,
.benefit-card::before {
    display: none !important;
}

/* 🎨 TEMA ESCURO para cards especiais */
.card-dark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

.card-dark:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(21, 25, 86, 0.3),
                0 10px 10px -5px rgba(21, 25, 86, 0.1) !important;
}

.card-dark h3,
.card-dark h4 {
    color: var(--white) !important;
}

.card-dark p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 📱 RESPONSIVO: Ajustes para mobile */
@media (max-width: 768px) {
    .solution-card:hover,
    .benefit-card:hover,
    .coverage-card:hover,
    .partner-card:hover,
    .team-member:hover,
    .mvv-card:hover,
    .article-card:hover,
    .category-card:hover {
        transform: translateY(-4px) !important;
    }
    
    .solution-card.primary:hover,
    .benefit-card.primary:hover,
    .coverage-card.featured:hover {
        transform: translateY(-6px) scale(1.01) !important;
    }
}

@media (max-width: 768px) {
    .contact-methods {
        align-items: center;
    }
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .method-icon {
        margin-bottom: 0.5rem;
    }
    .method-info {
        align-items: center;
        text-align: center;
    }
}

/* Remover animação das operadoras */
#operadoras .insurers-scroll-content {
    animation: none !important;
}
/* Remover animação das seguradoras, se houver */
#seguradoras .insurers-scroll-content {
    animation: none !important;
}

@media (max-width: 768px) {
    .trust-indicators,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
        padding: 1.2rem !important;
    }
}
@media (max-width: 480px) {
    .trust-indicators,
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        padding: 0.8rem !important;
    }
}

/* Centralização garantida dos ícones dos produtos em todas as telas */
.benefit-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.5rem !important;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

@media (max-width: 768px) {
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .image-placeholder {
    width: 180px !important;
    height: 180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .image-placeholder {
    width: 120px !important;
    height: 120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1rem !important;
  }
}