 /* Custom CSS con elementos únicos */
:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-medium: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 20px;
}

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

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

/* Header único */
.custom-navbar {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.brand-text .accent {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.cta-nav {
    background: var(--gradient-secondary);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

/* Hero Section único */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-2 { top: 60%; right: 15%; animation-delay: 2s; }
.float-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.float-4 { top: 40%; right: 30%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-title .community {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    margin: 0 2rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    background: var(--gradient-secondary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--dark-color);
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.trust-indicators i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Hero Visual único */
.hero-visual {
    position: relative;
    z-index: 2;
}

.success-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 2rem;
}

.success-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.success-card .card-header i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.amount-before {
    font-size: 1.2rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.arrow-down {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin: 1rem 0;
}

.amount-after {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.savings {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
}

.testimonial-bubble {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-soft);
}

.testimonial-bubble p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.testimonial-bubble cite {
    font-weight: 600;
    color: var(--primary-color);
}

/* Sections comunes */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-badge i {
    margin-right: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

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

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.unique-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.impact-counter {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.counter-item {
    margin-bottom: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.counter-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background: white;
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    background: var(--gradient-secondary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.why-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-stat {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* CTA Section única */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
}

.cta-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-title {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.cta-title i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

.urgency-indicator {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.urgency-indicator i {
    margin-right: 0.5rem;
}

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

.btn-cta {
    background: var(--gradient-secondary);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    color: var(--dark-color);
}

.btn-text {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-benefit {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

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

.testimonial-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--secondary-color);
}

.testimonial-content {
    padding: 0 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.6;
}

.testimonial-result {
    background: var(--light-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.result-label {
    font-weight: 500;
    color: var(--dark-color);
}

.result-amount {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

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

.footer-content {
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    width: 20px;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

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

.disclaimer-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
    color: #d1d5db;
}

.disclaimer-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.disclaimer-content a:hover {
    text-decoration: underline;
}

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

.social-links a {
    color: #d1d5db;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .success-card {
        transform: scale(0.9);
    }
    
    .about-content,
    .about-visual {
        text-align: center;
    }
    
    .impact-counter {
        margin-top: 2rem;
    }
    
    .why-card {
        margin-bottom: 2rem;
    }
    
    .cta-card {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .cta-content {
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .hero-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .why-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 1.5rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

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

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

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

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

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

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

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

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

.preq, .preq span {
    font-size: 2.25rem;
    margin-bottom: 30px;
    font-weight: 700;
}
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
			.preq, .preq span {
				font-size: 1.8rem;
				margin-bottom: 30px;
				font-weight: 700;
			}
        }


.btn-style-1 {
	min-width:160px;
	width:80%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-style-1:hover {
    background: color-mix(in srgb, var(--primary-color) 80%, black);
    transform: translateY(-2px);
}
/* 3. Outline dugme */
.btn-style-3 {
	min-width:160px;
	width:80%;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-style-3:hover {
    background: var(--primary-color);
    color: white;
}