/* CSS Variables for Harmonious Blue-Green Theme */
:root {
    /* Primary Blue Colors */
    --primary-color: #2196f3;
    --primary-dark: #1976d2;
    --primary-light: #42a5f5;
    --secondary-color: #0d47a1;
    --secondary-light: #64b5f6;
    
    /* Green Accent Colors for Details */
    --accent-color: #4caf50;
    --accent-light: #66bb6a;
    --accent-dark: #388e3c;
    --success-color: #4caf50;
    --success-light: #81c784;
    
    /* Neutral Colors */
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    
    /* Gradient variations */
    --primary-gradient: linear-gradient(135deg, #2196f3, #42a5f5);
    --accent-gradient: linear-gradient(135deg, #4caf50, #66bb6a);
    --hero-gradient: linear-gradient(rgba(13, 71, 161, 0.7), rgba(33, 150, 243, 0.7));
    --header-gradient: linear-gradient(rgba(13, 71, 161, 0.8), rgba(33, 150, 243, 0.8));
    --stats-gradient: linear-gradient(rgba(13, 71, 161, 0.9), rgba(33, 150, 243, 0.9));
    --cta-gradient: linear-gradient(135deg, #0d47a1, #2196f3);
    --success-gradient: linear-gradient(135deg, #388e3c, #4caf50);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.725rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.nav-logo img {
    width: 210px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.15rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

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

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.86rem 1.725rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

/* Page Header for Sub Pages */
.page-header {
    height: 60vh;
    background: var(--header-gradient),
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--white);
    margin: 1.5rem auto;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: slideIn 0.8s ease-out;
}

.slide:not(.active) {
    animation: slideOut 0.8s ease-out;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-line {
    width: 80px;
    height: 4px;
    background: var(--white);
    margin: 2rem auto;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-button {
    display: inline-block;
    background: var(--white);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Focus styles for accessibility */
.slider-btn:focus,
.indicator:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Loading animation for slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

/* Smooth transitions for all interactive elements */
.slider-btn,
.indicator,
.hero-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: var(--light-gray);
}

.overview-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.overview-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-benefits-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.benefit-detailed {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.benefit-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefit-content ul {
    list-style: none;
    padding: 0;
}

.benefit-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-content li:before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Main Services Section */
.main-services {
    padding: 6rem 0;
    background: var(--white);
}

.main-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.service-detailed-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.service-detailed-content {
    padding: 2rem;
}

.service-detailed-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-detailed-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.service-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Process Section */
.our-process {
    padding: 6rem 0;
    background: var(--light-gray);
}

.our-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.step-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* Insurance Introduction Section */
.insurance-intro {
    padding: 6rem 0;
    background: var(--white);
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.intro-stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.intro-stat span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Insurance Types Section */
.all-insurance-types {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.insurance-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.insurance-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.insurance-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

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

.insurance-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.insurance-subtitle {
    opacity: 0.9;
    font-size: 1rem;
}

.insurance-body {
    padding: 2rem;
}

.insurance-description p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.insurance-features {
    margin-bottom: 2rem;
}

.insurance-features h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.insurance-features ul {
    list-style: none;
    padding: 0;
}

.insurance-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.insurance-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

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

.insurance-benefits h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.insurance-cta {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.insurance-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Why Choose Insurance Section */
.why-choose-insurance {
    padding: 6rem 0;
    background: var(--white);
}

.why-choose-insurance h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

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

.choice-reason {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.choice-reason:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

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

.choice-reason h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.choice-reason p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--cta-gradient);
    color: var(--white);
    text-align: center;
}

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

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

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

.cta-primary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.services-intro h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 2rem auto;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.service-card {
    background: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

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

.service-card h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Info Section */
.info-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.info-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-color);
}

.info-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.info-points {
    display: grid;
    gap: 2rem;
}

.info-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-point i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.info-point h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-point p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.info-image {
    position: relative;
}

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

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(33, 150, 243, 0.6)),
                url('images/experience.jpeg') center/cover no-repeat;
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

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

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

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.about-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.about-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values {
    text-align: center;
}

.values h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.value {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--white);
}

/* All Services Section */
.all-services {
    padding: 6rem 0;
    background: var(--white);
}

.all-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.service-complete-card {
    background: var(--light-gray);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-complete-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-complete-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-complete-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.service-complete-card i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-complete-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-form-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.location {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.location i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.location strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.hours {
    margin: 2rem 0;
}

.hours h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-contacts {
    margin-top: 2rem;
}

.team-contacts h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-contacts p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member strong {
    color: var(--secondary-color);
}

.team-member a {
    color: #25d366;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.team-member a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .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: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 1rem;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .slider-nav {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .services-intro h3 {
        font-size: 1.5rem;
    }

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

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .services-benefits-detailed {
        grid-template-columns: 1fr;
    }

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

    .intro-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-image {
        order: -1;
    }

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 2rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .slider-nav {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-indicators {
        bottom: 0.5rem;
        gap: 0.3rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .stat-number {
        font-size: 3rem;
    }

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

    .services-complete-grid {
        grid-template-columns: 1fr;
    }

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

    .choice-reasons {
        grid-template-columns: 1fr;
    }

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

    .container {
        padding: 0 15px;
    }
}

/* Scroll animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for stats */
.stat-number {
    transition: all 2s ease;
} 

/* WhatsApp Fixed Button and Modal Styles */
.whatsapp-fixed-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Modal */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 320px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    border: 2px solid #25d366;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-modal-content {
    padding: 20px;
    position: relative;
}

.whatsapp-header {
    background: #25d366;
    color: var(--white);
    padding: 15px;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 15px -20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.whatsapp-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.whatsapp-response-time {
    color: #999;
    font-size: 12px;
    margin-bottom: 20px;
    font-style: italic;
}

.whatsapp-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.whatsapp-contact:hover {
    background: var(--light-gray);
    border-color: #25d366;
    transform: translateX(5px);
}

.contact-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    overflow: hidden;
}

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

.contact-info {
    flex: 1;
}

.contact-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.contact-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.contact-action {
    color: #25d366;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.whatsapp-contact:hover .contact-action {
    transform: scale(1.2);
}

.whatsapp-refresh {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp-refresh:hover {
    color: #25d366;
    background: #f0f0f0;
}

.whatsapp-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #25d366;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* Responsive adjustments for WhatsApp modal */
@media (max-width: 768px) {
    .whatsapp-fixed-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .whatsapp-modal {
        bottom: 85px;
        left: 20px;
        width: 280px;
    }
    
    .whatsapp-modal-content {
        padding: 15px;
    }
    
    .whatsapp-header {
        padding: 12px;
        margin: -15px -15px 12px -15px;
    }
    
    .whatsapp-header h3 {
        font-size: 14px;
    }
    
    .whatsapp-subtitle {
        font-size: 13px;
    }
    
    .whatsapp-response-time {
        font-size: 11px;
    }
    
    .contact-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-info h4 {
        font-size: 13px;
    }
    
    .contact-info p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .whatsapp-modal {
        width: 260px;
        left: 15px;
    }
    
    .whatsapp-fixed-btn {
        left: 15px;
        bottom: 15px;
    }
} 

/* Green accent styles for details */
.benefit i {
    color: var(--accent-color);
}

.benefit-detailed .benefit-icon {
    background: var(--accent-gradient);
}

.choice-reason .choice-icon {
    background: var(--accent-gradient);
}

.process-step .step-number {
    background: var(--accent-gradient);
}

.intro-stat i {
    color: var(--accent-color);
}

.insurance-card .insurance-icon {
    background: var(--accent-gradient);
}

.service-detailed-card .service-overlay {
    background: var(--accent-gradient);
}



.about-card .card-icon {
    background: var(--accent-gradient);
}

.value:hover {
    background: var(--accent-color);
}

/* Success states and confirmations */
.submit-button:hover {
    background: var(--accent-color);
}

.service-cta:hover {
    background: var(--accent-color);
}

.insurance-cta:hover {
    background: var(--accent-color);
}

/* Form focus states */
.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Link hover states */
.nav-menu a:hover {
    color: var(--accent-color);
}

.dropdown-content a:hover {
    color: var(--accent-color);
}

/* WhatsApp button accent */
.whatsapp-fixed-btn {
    background: var(--accent-color);
}

.whatsapp-fixed-btn:hover {
    background: var(--accent-dark);
}

/* Feature checkmarks */
.feature i {
    color: var(--accent-color);
}

.insurance-features li i {
    color: var(--accent-color);
}

.benefit-content li:before {
    color: var(--accent-color);
}

/* Info point icons */
.info-point i {
    color: var(--accent-color);
}

/* Team member links */
.team-member a {
    color: var(--accent-color);
}

.team-member a:hover {
    color: var(--accent-dark);
}

/* Footer social links */
.footer-social a:hover {
    color: var(--accent-color);
}

/* Insurance card navigation styles */
.service-complete-card[data-seguro] {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-complete-card[data-seguro]:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-complete-card[data-seguro]:active {
    transform: translateY(-5px) scale(1.01);
}

.service-complete-card[data-seguro]::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;
}

.service-complete-card[data-seguro]:hover::before {
    left: 100%;
}

/* Insurance card highlight effect for navigation */
.insurance-card {
    transition: box-shadow 0.3s ease;
}

.insurance-card.highlighted {
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.6);
    animation: pulse 2s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(33, 150, 243, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(33, 150, 243, 0.8);
    }
}

/* Add visual feedback for clickable cards */
.service-complete-card[data-seguro]::after {
    content: 'Ver más';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.service-complete-card[data-seguro]:hover::after {
    opacity: 1;
    transform: translateY(0);
} 