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

:root {
    --primary-color: #00d4e0;
    --secondary-color: #7c3aed;
    --accent-color: #00e077;
    --gold-color: #ffd700;
    --danger-color: #ff3366;
    --text-dark: #ffffff;
    --text-light: #a0aec0;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 35, 0.8);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(0, 212, 224, 0.2);
    --shadow-glow-accent: 0 0 30px rgba(0, 224, 119, 0.2);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px;
    background: transparent;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.header-minimal .hamburger {
    display: flex;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, #5affff 0%, #00ff9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(0, 255, 200, 0.35));
    text-decoration: none;
    letter-spacing: -1px;
}

.hero-new {
    padding: 40px 10px 60px;
    text-align: left;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
    background: none;
    -webkit-text-fill-color: unset;
    filter: none;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #5affff 0%, #00ff9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(0, 255, 200, 0.35));
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00d7ff 0%, #006dff 100%);
    color: #ffffff;
    padding: 18px 30px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 18px 42px rgba(0, 170, 255, 0.35), 0 4px 10px rgba(0, 90, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #0080ff 100%);
    box-shadow: 0 22px 50px rgba(0, 170, 255, 0.45), 0 6px 14px rgba(0, 90, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-hero-primary .btn-icon {
    font-size: 1.3rem;
    font-weight: 300;
}

.btn-hero-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    color: var(--text-light);
    padding: 18px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-dark);
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 30px;
    background: transparent;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 30px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-menu ul a:hover {
    color: var(--primary-color);
    background: var(--glass);
    border-color: var(--primary-color);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

.header-content {
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(0, 240, 255, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.header-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 240, 255, 0.1), transparent, rgba(124, 58, 237, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

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

h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(0, 212, 224, 0.35));
    letter-spacing: -2px;
}

h1 a {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-section {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section > p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(0, 212, 224, 0.35));
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-content {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.main-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.1rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 50px;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-section h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

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

label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, select, textarea {
    padding: 14px 16px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--glass);
    color: var(--text-dark);
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

input::placeholder, textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

select option {
    background: var(--bg-dark);
    color: var(--text-dark);
}

.btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #00cc6a 100%);
    color: var(--bg-dark);
    padding: 18px 30px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(0, 255, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.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 ease;
}

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

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.6);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 25px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(0, 240, 255, 0.6);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 25px rgba(0, 224, 119, 0.4);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 4px 35px rgba(0, 224, 119, 0.5);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 50px rgba(0, 255, 136, 0.8);
    animation: none;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: var(--bg-dark);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.info-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviews-section {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), #ff8c00);
}

.reviews-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-color), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-section > p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    color: var(--gold-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars {
    color: var(--gold-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.review-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.7;
}

.review-author {
    color: var(--gold-color);
    font-weight: 700;
    font-size: 1rem;
}

.review-form-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
}

.review-form-container h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-direction: row-reverse;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2.5rem;
    color: var(--glass-border);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--gold-color);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.review-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 106, 0.1) 100%);
    color: var(--accent-color);
    padding: 20px 25px;
    border-radius: 14px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid var(--accent-color);
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

footer {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.legal-info {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 25px;
}

.legal-info strong {
    color: var(--text-dark);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-links a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 240, 255, 0.1);
}

.mission-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
}

.mission-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-icon svg {
    fill: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.team-section {
    margin-top: 50px;
}

.team-section h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon svg {
    fill: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
}

.contact-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

.contact-card a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.whatsapp-cta {
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 15s linear infinite;
}

.whatsapp-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
    font-weight: 800;
    position: relative;
}

.whatsapp-cta p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-dark);
    color: var(--accent-color);
    padding: 18px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-color);
}

.address-section {
    margin-top: 50px;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.address-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.address-section p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.hours-table {
    margin-top: 25px;
    display: inline-block;
    text-align: left;
}

.hours-table div {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-light);
}

.hours-table div:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-section, .main-content, .reviews-section {
        padding: 40px 25px;
    }

    .hero-section h2, .reviews-section h2 {
        font-size: 1.8rem;
    }

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

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .form-section, .review-form-container {
        padding: 25px 15px;
    }

    .form-grid, .review-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    input, select, textarea {
        padding: 12px 14px;
        font-size: 16px;
    }

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

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    .info-cards, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .star-rating label {
        font-size: 2rem;
    }

    .btn {
        padding: 16px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        gap: 10px;
    }

    .btn svg {
        width: 24px;
        height: 24px;
    }

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

    .whatsapp-cta {
        padding: 40px 25px;
    }

    footer {
        padding: 40px 25px;
    }
}

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

    h1 {
        font-size: 1.8rem;
    }

    .header-content {
        padding: 40px 20px;
    }

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

    .stat-item {
        padding: 20px 10px;
        overflow: visible;
    }

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

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
    }

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

.pulse {
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer {
    background: linear-gradient(90deg, var(--text-dark) 0%, var(--primary-color) 50%, var(--text-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
