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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #333;
    line-height: 1.6;
}
/* Scrolling Banner */
.scrolling-banner {
    background-color: #272727;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.scrolling-text {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-size: 18px;
    font-weight: 700;
}

.scrolling-text span {
    margin: 0 50px;
}

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

/* Main Content */
.main-content {
    padding: 60px 20px;
    background-image: url('./imgs/fondo.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Form Section */
.form-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.form-title {
    background: linear-gradient(90deg, #DEC58D 0%, #786A4C 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 800;
    display: inline-block;
}

.btn-order-header {
    background: linear-gradient(90deg, #DEC58D 0%, #786A4C 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-order-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 208, 0, 0.4);
}

/* Form Styles */
.buyer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.hidden {
    display: none !important;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2e2e2e;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 187, 0, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    flex: 0 0 120px;
}

.phone-input input {
    flex: 1;
}

/* Installments Cards */
.installments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.installment-card {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    background: #fafafa;
    transition: all 0.2s ease;
}

.installment-card:hover {
    border-color: #DEC58D;
}

.installment-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.installment-card input[type="radio"]:checked ~ .card-content {
    background: #ffffff;
    border-color: #DEC58D;
}

.installment-card input[type="radio"]:checked ~ .card-content .card-checkmark {
    opacity: 1;
    color: #DEC58D;
}

.card-content {
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.card-checkmark {
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Summary Section */
.summary-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.total-box {
    background: white;
    border: 3px dashed #3f3f3f;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 20px;
    font-weight: 700;
    color: #3f3e3e;
}

.total-amount {
    font-size: 24px;
    font-weight: 900;
    color: #333;
}

.price-box {
    background: linear-gradient(90deg, #DEC58D 0%, #786A4C 100%);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(222, 197, 141, 0.3);
}

.price-amount {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.payment-method {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(255, 196, 0, 0.1);
}

.payment-title {
    background-color: #2c2c2c;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.payment-option:hover {
    background-color: #f8f8f8;
}

.payment-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #303030;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #3f3f3f;
    border-radius: 50%;
}

.payment-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.btn-order-main {
    width: 100%;
    background: linear-gradient(90deg, #DEC58D 0%, #786A4C 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-order-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 187, 0, 0.4);
}

.btn-business-freedom {
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #DEC58D;
    border: 2px solid #DEC58D;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(222, 197, 141, 0.2);
}

.btn-business-freedom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 197, 141, 0.5);
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-color: #f0daa5;
    color: #f0daa5;
}

.btn-business-freedom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background-color: #4e4e4e;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-icon {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.footer-text {
    font-size: 18px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
    }

    .header-left-person,
    .header-right-person {
        display: none;
    }

    .header-center {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .form-header {
        flex-direction: column;
        align-items: stretch;
    }

    .form-title {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .installments-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 20px;
    }

    .brand-logo {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-item {
        justify-content: center;
    }
}