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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background: #F7FAFC;
    transition: all 0.3s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #1A202C;
    --bg-secondary: #2D3748;
    --text-primary: #F7FAFC;
    --text-secondary: #E2E8F0;
    --border-color: #4A5568;
    color: var(--text-primary);
    background: var(--bg-primary);
}

[data-theme="dark"] .bg-light {
    background: var(--bg-secondary) !important;
}

[data-theme="dark"] .text-dark {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .border {
    border-color: var(--border-color) !important;
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px !important;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 999 !important; /* Reducido de 9999 a 999 */
    transition: top 0.3s;
    opacity: 0;
    visibility: hidden;
}

.skip-link:focus {
    top: 6px !important;
    opacity: 1;
    visibility: visible;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-top: 80px;
    position: relative;
    z-index: 10; /* Reducido de 100 a 10 */
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.breadcrumb-current {
    color: var(--text-secondary);
    font-weight: 500;
}

[data-theme="dark"] .breadcrumbs {
    background: rgba(45, 55, 72, 0.9);
    border-bottom-color: var(--border-color);
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.theme-toggle i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

[data-theme="dark"] .theme-toggle i.fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle i.fa-moon {
    display: none;
}

[data-theme="light"] .theme-toggle i.fa-sun {
    display: none;
}

[data-theme="light"] .theme-toggle i.fa-moon {
    display: block;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-brand i {
    margin-right: 0.5rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 50%, #F093FB 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #FFD700, #FF6B9D, #C084FC);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

.stat h3 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B9D 0%, #4FACFE 100%);
}

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

.service-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #4FACFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-card p {
    color: #718096;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="%23ffffff" opacity="0.05"><circle cx="50" cy="10" r="10"/></svg>');
    background-repeat: repeat;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.3);
    color: #2D3748;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.pricing-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-card.featured {
    transform: scale(1.08);
    background: linear-gradient(135deg, #FFD700 0%, #FF8E53 100%);
    color: white;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.1);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    opacity: 0.8;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0.3rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .amount {
    color: white;
    -webkit-text-fill-color: white;
}

.period {
    opacity: 0.8;
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: #48BB78;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.pricing-note {
    background: linear-gradient(135deg, #FFF5F5 0%, #FED7D7 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border-left: 5px solid #FF6B9D;
    color: #2D3748;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.2);
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.calculator-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.calculator-section > .container > p {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

[data-theme="dark"] .calculator-form {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.calculator-form .form-group {
    margin-bottom: 2rem;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calculator-form select,
.calculator-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2D3748;
}

[data-theme="dark"] .calculator-form select,
[data-theme="dark"] .calculator-form input {
    background: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.calculator-form select:focus,
.calculator-form input:focus {
    outline: none;
    border-color: #667EEA;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.calculator-results {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.calculator-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" fill="%23ffffff" opacity="0.03"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="20" fill="currentColor"/></svg>');
    background-repeat: repeat;
}

.calculator-results h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

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

.result-item.total {
    background: rgba(255,255,255,0.1);
    margin: 1rem -3rem;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.result-item .label {
    font-weight: 500;
}

.result-item .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

.result-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.result-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Branches Section */
.branches {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.branches h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.branch-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #FF6B9D 0%, #4FACFE 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.branch-card h3 {
    color: #2D3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.branch-card h3 i {
    background: linear-gradient(135deg, #FF6B9D 0%, #4FACFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.8rem;
    font-size: 1.5rem;
}

.branch-card p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #4A5568;
}

.branch-card strong {
    color: #2D3748;
}

/* Payment Section */
.payment {
    padding: 100px 0;
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
    position: relative;
}

.payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" fill="%23ffffff" opacity="0.03"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="20" fill="currentColor"/></svg>');
    background-repeat: repeat;
}

.payment h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.payment-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.payment-category {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #FFD700;
    color: #2D3748;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.payment-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.payment-category h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
}

.payment-category h3 i {
    background: linear-gradient(135deg, #FF6B9D 0%, #4FACFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.8rem;
    font-size: 1.6rem;
}

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

.payment-category li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 500;
    transition: color 0.3s ease;
}

.payment-category li:hover {
    color: #667EEA;
}

.payment-category li:last-child {
    border-bottom: none;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: linear-gradient(135deg, #FFD700 0%, #FF8E53 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.info-card h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2D3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.faq-question i {
    transition: all 0.4s ease;
    color: #667EEA;
    font-size: 1.3rem;
}

.faq-answer {
    padding: 0 2rem 2rem;
    display: none;
    color: #4A5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" fill="%23ffffff" opacity="0.03"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="20" fill="currentColor"/></svg>');
    background-repeat: repeat;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.testimonials > .container > p {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    margin: 0 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    min-width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    color: #2D3748;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.3rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    text-align: center;
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.author-info span {
    color: #718096;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

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

.testimonial-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-top: 0.3rem;
}

.contact-item h4 {
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2D3748;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2D3748;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667EEA;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    margin-right: 0.8rem;
    color: #FFD700;
    font-size: 2rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-section a:hover {
    color: #FFD700;
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #4FACFE 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.emergency-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin: 0.8rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #FFD700;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: -100% !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
        transition: top 0.3s, opacity 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .nav-menu.active {
        top: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .services h2, .pricing h2, .branches h2, .payment h2, .faq h2, .contact h2, .calculator-section h2, .testimonials h2 {
        font-size: 2.5rem;
    }
    
    .fixed-actions {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .action-button {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .action-button i {
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .floating-menu {
        left: 15px;
        bottom: 15px;
    }
    
    .menu-toggle {
        width: 50px;
        height: 50px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .menu-item {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .menu-items {
        bottom: 60px;
        gap: 8px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .breadcrumbs {
        margin-top: 70px;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .theme-toggle {
        padding: 0.4rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services, .pricing, .branches, .payment, .faq, .contact, .calculator-section, .testimonials {
        padding: 80px 0;
    }
    
    .service-card, .pricing-card, .branch-card, .calculator-form, .testimonial-card {
        padding: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .services h2, .pricing h2, .branches h2, .payment h2, .faq h2, .contact h2, .calculator-section h2, .testimonials h2 {
        font-size: 2rem;
    }
    
    .calculator-container {
        gap: 1.5rem;
    }
    
    .calculator-form {
        padding: 2rem;
    }
    
    .calculator-results {
        padding: 2rem;
    }
    
    .result-item.total {
        margin: 1rem -2rem;
        padding: 1.5rem 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .fixed-actions {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .action-button {
        padding: 10px 14px;
        font-size: 0.7rem;
    }
    
    .action-button i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
    
    .floating-menu {
        left: 10px;
        bottom: 10px;
    }
    
    .menu-toggle {
        width: 45px;
        height: 45px;
        gap: 3px;
    }
    
    .menu-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .menu-item {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .menu-items {
        bottom: 55px;
        gap: 6px;
    }
    
    .breadcrumb-list {
        font-size: 0.7rem;
        flex-wrap: wrap;
    }
    
    .breadcrumbs {
        margin-top: 65px;
        padding: 0.8rem 0;
    }
    
    .theme-toggle {
        padding: 0.3rem;
        font-size: 0.8rem;
    }
    
    .form-actions {
        gap: 0.8rem;
    }
    
    .btn-secondary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.nav-links a:hover {
    color: #FFD700;
    opacity: 1;
}

/* Fixed Action Buttons */
.fixed-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-button {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.action-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.action-button i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-button:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.phone-button {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.phone-button:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.emergency-button {
    background: linear-gradient(135deg, #F56565 0%, #E53E3E 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(245, 101, 101, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 101, 101, 0.6);
    }
}

.emergency-button:hover {
    box-shadow: 0 8px 30px rgba(245, 101, 101, 0.5);
    animation: none;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}

.menu-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-items {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.menu-item {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667EEA;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-item:hover {
    background: #667EEA;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Enhanced Form Styles */
.form-description {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-style: italic;
}

[data-theme="dark"] .form-description {
    color: var(--text-secondary);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.field-error {
    color: #F56565;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.field-error.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #F56565;
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(72, 187, 120, 0.3);
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000; /* Reducido de 9999 a 5000 */
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loading.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure main content is visible */
body {
    opacity: 1;
}

/* Scroll Animations - DISABLED FOR IMMEDIATE VISIBILITY */
.scroll-reveal {
    /* opacity: 0; */           /* COMENTADO - mantener visible */
    /* transform: translateY(30px); */  /* COMENTADO - mantener posición normal */
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    /* opacity: 1; */           /* COMENTADO - ya visible */
    /* transform: translateY(0); */    /* COMENTADO - ya en posición correcta */
}