/* ============================================
   assets/css/style.css - Main Stylesheet
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 50px;
    color: #059669;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 15px;
    white-space: nowrap;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 5px;
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    border-color: #059669;
    color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.btn-hero-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-hero-calculator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.btn-hero-calculator:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-item .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #059669;
    display: block;
}

.hero-stat-item .label {
    font-size: 0.8rem;
    color: #64748b;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image .main-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.hero-image .floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.hero-image .floating-card:nth-child(2) {
    top: -15px;
    right: -15px;
    animation-delay: 0.5s;
}

.hero-image .floating-card:nth-child(3) {
    bottom: 30px;
    left: -25px;
    animation-delay: 1s;
}

.hero-image .floating-card .icon {
    width: 35px;
    height: 35px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 1rem;
}

.hero-image .floating-card .text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #0f172a;
}

.hero-image .floating-card .text small {
    display: block;
    font-weight: 400;
    color: #64748b;
    font-size: 0.7rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: nowrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 0.8rem;
    white-space: nowrap;
}

.trust-badges .badge i {
    color: #059669;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .hero-container { gap: 35px; }
}

@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 50px 0; }
    .hero-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-title { font-size: 2rem; white-space: normal; }
    .hero-subtitle { max-width: 100%; font-size: 0.95rem; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary,
    .hero-buttons .btn-hero-whatsapp,
    .hero-buttons .btn-hero-calculator {
        padding: 12px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .hero-stats { justify-content: center; gap: 20px; flex-wrap: wrap; }
    .hero-stat-item { text-align: center; }
    .hero-image .main-image { max-width: 100%; }
    .hero-image .floating-card { display: none; }
    .trust-badges { justify-content: center; flex-wrap: wrap; }
    .hero-badge { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary,
    .hero-buttons .btn-hero-whatsapp,
    .hero-buttons .btn-hero-calculator {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
    .hero-stats { flex-direction: column; gap: 10px; }
    .trust-badges { flex-direction: column; gap: 8px; }
}

/* ============================================
   SERVICES SECTION STYLES
   ============================================ */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-header h2 i {
    color: #059669;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #059669;
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #059669;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION STYLES
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #059669, #047857);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: white;
    color: #059669;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 0.95rem;
    }
    .cta-section .btn-white {
        padding: 14px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    .section-header p {
        font-size: 0.9rem;
    }
}
