/* OMMEO Website Styles - Pixel Perfect Replica */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #ffffff 0%, #fdf3cd 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900; /* Extra Black */
    line-height: 1.2;
    margin: 0;
}

p, span, div, a, button {
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 8px Grid System */
.spacing-8 { margin: 8px; }
.spacing-16 { margin: 16px; }
.spacing-24 { margin: 24px; }
.spacing-32 { margin: 32px; }
.spacing-40 { margin: 40px; }
.spacing-48 { margin: 48px; }
.spacing-56 { margin: 56px; }
.spacing-64 { margin: 64px; }

/* Header - NOT STICKY */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 116, 35, 0.1);
    padding: 16px 0;
    position: relative; /* Changed from fixed to relative */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-benefits {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 116, 35, 0.1);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #ff7423;
    white-space: nowrap;
}

.benefit-icon {
    font-size: 16px;
}

/* Inline Logos */
.inline-logo {
    height: 24px;
    width: auto;
    vertical-align: middle;
    margin: 0 4px;
}

.inline-logo-title {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin: 0 8px;
}

.inline-logo-footer {
    height: 28px;
    width: auto;
    vertical-align: middle;
    margin: 0 4px;
}

.inline-logo-small {
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin: 0 4px;
}

/* Hero Section */
.hero {
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 116, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #333 0%, #ff7423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 116, 35, 0.2);
}

/* Floating Boxes */
.floating-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 116, 35, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(255, 116, 35, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ff7423;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-box-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-box-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-box-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

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

.floating-icon {
    font-size: 16px;
}

.floating-text {
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #22c55e 0%, #16a085 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff7423 0%, #ff5722 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 116, 35, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 116, 35, 0.4);
    background: linear-gradient(135deg, #ff6b1a 0%, #e64a19 100%);
}

.btn-outline {
    background: transparent;
    color: #ff7423;
    border: 2px solid #ff7423;
}

.btn-outline:hover {
    background: #ff7423;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 116, 35, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #ff7423;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 48px;
}

/* Why Choose Section */
.why-choose {
    padding: 64px 0;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 116, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(255, 116, 35, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(255, 116, 35, 0.2);
}

.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.feature-content {
    padding: 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ff7423;
    color: #ff7423;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn:hover {
    background: #ff7423;
    color: white;
    transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
    padding: 64px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 116, 35, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 2;
}

.method {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(255, 116, 35, 0.1);
}

.method-title {
    font-size: 24px;
    font-weight: 900;
    color: #ff7423;
    margin-bottom: 32px;
    text-align: center;
}

.steps {
    margin-bottom: 32px;
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff7423;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 116, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(255, 116, 35, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(255, 116, 35, 0.2);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff7423;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.author-rating {
    font-size: 14px;
    color: #ff7423;
}

/* Packages Section */
.packages {
    padding: 64px 0;
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 116, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.package-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(255, 116, 35, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(255, 116, 35, 0.2);
}

.package-card-featured {
    border: 2px solid #ff7423;
    transform: scale(1.05);
}

.package-card-featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: 16px;
    right: -32px;
    background: #ff7423;
    color: white;
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.package-header {
    text-align: center;
    margin-bottom: 32px;
}

.package-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.package-badge-basic {
    background: rgba(255, 116, 35, 0.1);
    color: #ff7423;
}

.package-badge-general {
    background: rgba(139, 69, 19, 0.1);
    color: #8b4513;
}

.package-badge-deep {
    background: rgba(75, 0, 130, 0.1);
    color: #4b0082;
}

.package-price {
    font-size: 36px;
    font-weight: 900;
    color: #333;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 16px;
    color: #666;
}

.package-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff7423;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.package-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Section */
.faq {
    padding: 64px 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 116, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

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

.faq-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 116, 35, 0.2);
}

.faq-questions {
    max-width: 600px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 116, 35, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 12px 32px rgba(255, 116, 35, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: #ff7423;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #ff7423;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9); /* Original light color, not dark */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 116, 35, 0.1);
    padding: 48px 0 24px;
    margin-top: 64px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

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

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 24px;
    font-weight: 900;
    color: #ff7423;
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 14px;
    color: #666;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff7423;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 116, 35, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: #ff7423;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 116, 35, 0.3);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 116, 35, 0.1);
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-terms {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-terms:hover {
    color: #ff7423;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .package-card {
        padding: 24px; /* Reduced padding for mobile */
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-benefits {
        display: none;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .carousel-btn {
        width: 40px; /* Reduced size for mobile */
        height: 40px;
    }
    
    .floating-box {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .method {
        padding: 24px;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }
    
    .package-card {
        padding: 20px; /* Further reduced for mobile */
    }
    
    .package-buttons {
        align-items: center;
    }
    
    .package-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .package-card {
        padding: 16px;
    }
    
    .package-price {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 13px;
    }
}

/* Performance Optimizations */
.hero-img,
.feature-image,
.faq-img,
.author-avatar {
    will-change: transform;
    backface-visibility: hidden;
}

/* Smooth Animations */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .testimonials-track {
        animation: none;
    }
    
    .floating-box {
        animation: none;
    }
}

