﻿/* DISCLAIMER SECTION - CLEAN PROFESSIONAL */
.disclaimer-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
}

.disclaimer-primary {
    font-size: 1.1rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer-secondary {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* WHATSAPP SECTION - MODERN UI/UX */
.whatsapp-section {
    max-width: 650px;
    margin: 0rem auto;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

    .whatsapp-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #22c55e, #86efac, #22c55e);
        border-radius: 24px 24px 0 0;
    }

/* WHATSAPP BADGE */
.whatsapp-badge {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(34,197,94,0.3);
}

/* CONTAINER */
.whatsapp-container {
    position: relative;
    z-index: 1;
}

/* INPUT GROUP */
.input-group {
    margin-bottom: 2rem;
}

.input-label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.whatsapp-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .whatsapp-input:focus {
        outline: none;
        border-color: #22c55e;
        box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
        transform: translateY(-1px);
        background: white;
    }

    .whatsapp-input::placeholder {
        color: #9ca3af;
    }

.input-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

/* BUTTON GROUP */
.button-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    flex: 1;
    min-width: 200px;
    min-height: 64px;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 10px 25px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: inherit;
}

    .whatsapp-btn i {
        font-size: 1.2rem;
    }

/* PRIMARY BUTTON - WHATSAPP */
.primary-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 25px rgba(34,197,94,0.4);
    border: 2px solid rgba(34,197,94,0.2);
}

    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(34,197,94,0.5);
        background: linear-gradient(135deg, #16a34a, #22c55e);
    }

    .primary-btn:active {
        transform: translateY(-1px);
    }

/* SECONDARY BUTTON */
.secondary-btn {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    box-shadow: 0 10px 25px rgba(107,114,128,0.4);
    border: 2px solid rgba(107,114,128,0.2);
}

    .secondary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(107,114,128,0.5);
        background: linear-gradient(135deg, #4b5563, #6b7280);
    }

    .secondary-btn:active {
        transform: translateY(-1px);
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .whatsapp-section {
        margin: 2.5rem 1rem;
        padding: 2.5rem 2rem;
    }

    .whatsapp-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: -1rem 0 2rem 0;
        display: inline-block;
    }

    .button-group {
        flex-direction: column;
    }

    .whatsapp-btn {
        min-height: 56px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0.5rem;
    }

    .whatsapp-input {
        padding: 1.1rem 1.25rem;
        font-size: 1rem;
    }
}

/* FOCUS STATES */
.whatsapp-input:focus,
.whatsapp-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
}

/* UTILITY */
.fab, .fas {
    font-family: "Font Awesome 6 Free" !important;
}
