/* Landing Page DoraPag - Styles */

:root {
    --primary-blue: #5B7FFF;
    --dark-blue: #2C3E7D;
    --light-bg: #F8F9FF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #FFFFFF;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #C2C5D9;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-login {
    color: #4A4A4A;
    background: transparent;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-login:hover {
    color: #2C2C2C;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(91, 127, 255, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, #F8F9FF 0%, #EEF2FF 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: var(--primary-blue);
}

.hero-content h1 .normal {
    color: #4A4A4A;
}

.hero-content p {
    font-size: 1rem;
    color: #6B6B6B;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.hero-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

/* Mission Section */
.mission-section {
    padding: 80px 2rem;
    text-align: center;
    background: white;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-container p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 80px 2rem;
    background: var(--light-bg);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--primary-blue);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(91, 127, 255, 0.3);
    transition: all 0.3s ease;
    text-align: left;
    color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(91, 127, 255, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: block;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 2rem;
    background: #E8EBFA;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-wrapper {
    background: var(--primary-blue);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(91, 127, 255, 0.3);
}

.pricing-image {
    position: relative;
}

.pricing-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.2);
}

.pricing-content {
    color: white;
}

.pricing-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.pricing-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
}

.pricing-card-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.pricing-card-text {
    flex: 1;
}

.pricing-card-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.pricing-divider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

.pricing-note {
    display: none;
}

/* Platform Section */
.platform-section {
    padding: 80px 2rem;
    background: #F5F5F7;
}

.platform-container {
    max-width: 1280px;
    margin: 0 auto;
}

.platform-header {
    text-align: center;
    margin-bottom: 4rem;
}

.platform-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.platform-header h2 .highlight {
    color: var(--primary-blue);
}

.platform-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

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

.platform-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.platform-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.platform-card-content {
    padding: 2rem;
}

.platform-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.platform-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Why Choose Section */
.why-section {
    padding: 80px 2rem;
    background: var(--light-bg);
}

.why-container {
    max-width: 1280px;
    margin: 0 auto;
}

.why-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 127, 255, 0.15);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 2rem;
    background: white;
    text-align: center;
}

.enterprise-container {
    max-width: 900px;
    margin: 0 auto;
}

.enterprise-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.enterprise-container p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 80px 2rem;
    background: var(--light-bg);
}

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

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 60px 2rem 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    .pricing-image img {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .hero-section {
        padding: 120px 1rem 60px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .features-grid,
    .why-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-title,
    .features-title,
    .why-title,
    .faq-title,
    .platform-header h2 {
        font-size: 1.75rem;
    }
    
    .pricing-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .pricing-image img {
        width: 200px;
        height: 200px;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 1rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
