/* APE Compravendita Custom Styles */

:root {
    --marketing-text-primary: #111827;
    --marketing-text-secondary: #4B5563;
    --marketing-text-tertiary: #9CA3AF;
    --marketing-background-secondary: #F9FAFB;
    --marketing-border-light: #F3F4F6;
    --marketing-border-default: #E5E7EB;
}

/* Brand Colors */
.bg-brand-primary {
    background-color: #33aa11 !important;
}

.text-brand-primary {
    color: #33aa11 !important;
}

.bg-marketing-secondary {
    background-color: #F9FAFB !important;
}

/* Typography Extensions */
.text-lg-12 {
    font-size: 3rem;
}

.text-lg-10 {
    font-size: 2.25rem;
}

.text-8 {
    font-size: 1.875rem;
}

.text-5 {
    font-size: 1.25rem;
}

.text-4 {
    font-size: 1.125rem;
}

.text-3-5 {
    font-size: 1rem;
}

.line-height-2 {
    line-height: 1.2;
}

.line-height-4 {
    line-height: 1.6;
}

/* Utilities */
.rounded-3xl {
    border-radius: 1.5rem !important;
}

.text-transform-none {
    text-transform: none !important;
}

/* Buttons */
.btn-marketing-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 2rem;
    background-color: #33aa11;
    color: white !important;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(51, 170, 17, 0.3);
}

.btn-marketing-primary:hover {
    background-color: #29880d;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(51, 170, 17, 0.4);
}

.btn-marketing-primary-large {
    height: 3.5rem !important;
    font-size: 1.125rem !important;
    padding: 0 2.5rem !important;
}

/* Layout Gaps for Row */
.g-8 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.g-12 {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

.g-20 {
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 5rem;
}

@media (min-width: 768px) {
    .md\:g-12 {
        --bs-gutter-x: 3rem;
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .lg\:g-20 {
        --bs-gutter-x: 5rem;
        --bs-gutter-y: 5rem;
    }

    .py-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-18 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .py-28 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .py-32 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
}

.bg-gradient-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (min-width: 768px) {
    .md\:py-24 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

@media (min-width: 992px) {
    .lg\:py-32 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
}

/* Tag Styles */
.bg-blue-100 {
    background-color: #dbeafe !important;
}

.text-blue-800 {
    color: #1e40af !important;
}

.bg-red-100 {
    background-color: #fee2e2 !important;
}

.text-red-800 {
    color: #991b1b !important;
}

.bg-green-100 {
    background-color: #dcfce7 !important;
}

.text-green-800 {
    color: #166534 !important;
}

.max-w-3xl {
    max-width: 48rem;
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

.hover-padding-right:hover {
    padding-right: 0.5rem;
}

.hover-scale-102:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.hover-text-brand-primary:hover {
    color: #33aa11 !important;
}

.bg-gradient-header {
    background: linear-gradient(90deg, #FFFDF6 0%, #FFEFD5 100%);
}

.bg-gradient-logo-cloud {
    background: linear-gradient(180deg, #FAF9F5 0%, #F0EFEB 100%) !important;
}