/* ============================================
   COMPONENTES ESPECÍFICOS DO PAGAMENTO
   ============================================ */

/* Form Body específico do pagamento */
.form-body {
    padding: 30px;
}

/* ============================================
   PASSO 14: ESCOLHA DE PLANO
   ============================================ */

.plans-grid-14 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 30px;
}
.step-title-pag {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.plan-card {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.plan-badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.plan-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.plan-price {
    text-align: center;
    margin-bottom: 10px;
}

.price-symbol {
    font-size: 24px;
    color: #d35d6e;
    vertical-align: super;
}

.price-value {
    font-size: 48px;
    font-weight: bold;
    color: #d35d6e;
}

.price-cents {
    font-size: 24px;
    color: #d35d6e;
}

.plan-description {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-features li {
    padding: 8px 0;
    color: #555;
}

.plan-select-button {
    width: 100%;
    padding: 12px;
    border: 2px solid #d35d6e;
    background: white;
    color: #d35d6e;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-select-button:hover {
    background: #f8f9fa;
}

/* ============================================
   PASSO 15: MÉTODOS DE PAGAMENTO
   ============================================ */

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.payment-method-card {
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    cursor: pointer;
    transition: 0.3s;
    background: white;
    text-align: center;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-method-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.payment-method-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.payment-method-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.payment-method-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.payment-method-features li {
    padding: 5px 0;
    color: #555;
}

.payment-method-badge {
    background: #f0f9ff;
    color: #0284c7;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

/* ============================================
   PASSO 16: PAGAMENTO PIX
   ============================================ */

.pix-qr-container {
    text-align: center;
    margin: 30px 0;
}

.pix-qr-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.pix-instruction {
    color: #666;
    margin-top: 15px;
}

.pix-code-container {
    margin: 30px 0;
}

.pix-code-label {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
}

.pix-code-input-group {
    display: flex;
    gap: 10px;
}

.pix-code-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    font-family: monospace;
}

.pix-copy-button {
    padding: 12px 20px;
    background: #d35d6e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.pix-copy-button:hover {
    background: #c24d5f;
}

.pix-code-hint {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.pix-instructions-box {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.pix-instructions-box h4 {
    margin-bottom: 10px;
}

.pix-instructions-box ol {
    line-height: 1.8;
    padding-left: 20px;
}

/* ============================================
   PASSO 16: PAGAMENTO CARTÃO
   ============================================ */

.card-brands-container {
    text-align: center;
    margin-bottom: 20px;
}

.card-brands-container p {
    margin-bottom: 10px;
    color: #666;
}

.card-brands {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.card-brand-icon {
    font-size: 32px;
}

.card-info-box {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #0284c7;
}

.card-info-box ul {
    margin-left: 20px;
    margin-top: 10px;
}

.form-group-payment {
    margin-bottom: 20px;
}

.form-group-payment label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control-payment {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-control-payment:focus {
    outline: none;
    border-color: #d35d6e;
    box-shadow: 0 0 0 3px rgba(211, 93, 110, 0.1);
}

.form-row-payment {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.installments-box {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #0284c7;
}

.installments-box label {
    color: #0284c7;
    font-weight: bold;
}

.btn-pay-card {
    width: 100%;
    padding: 15px 25px;
    background: #d35d6e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pay-card:hover:not(:disabled) {
    background: #c24d5f;
    transform: translateY(-2px);
}

.btn-pay-card:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ============================================
   STATUS BOX (COMPARTILHADO)
   ============================================ */

.payment-status-box {
    background: #fff8e1;
    border: 2px solid #ffd54f;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.payment-status-box.success {
    background: #d4edda;
    border-color: #28a745;
}

.payment-status-box.error {
    background: #f8d7da;
    border-color: #dc3545;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.status-title {
    color: #f57c00;
    margin-bottom: 10px;
}

.status-text {
    color: #666;
}

.checking-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* ============================================
   LOADING OVERLAY
   ============================================ */

.payment-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.payment-loading-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.payment-loading-content h3 {
    color: #d35d6e;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 10px;
}

.payment-loading-content p {
    color: #666;
}

/* ============================================
   SPINNERS
   ============================================ */

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid #d35d6e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

.spinner-large {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #d35d6e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* ============================================
   SEGURANÇA
   ============================================ */

.payment-security {
    text-align: center;
    margin: 20px 0;
    color: #666;
    font-size: 14px;
}

.security-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 24px;
}

/* ============================================
   PREVIEW DO SITE NO IPHONE
   ============================================ */

.iphone-15-mockup {
    width: 100%;
    max-width: 390px;
    height: auto;
    aspect-ratio: 390 / 735;
    background: rgba(0, 0, 0, 0.653);
    border-radius: 50px;
    padding: 10px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid #444;
    margin: 0 auto;
}

.iphone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 0, 0, 0.5);
}

.iphone-screen {
    background: var(--background-color);
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 30%);
    border-radius: 36px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
}

.iphone-screen::-webkit-scrollbar {
    display: none;
}

.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 35px;
    background: #000;
    border-radius: 25px;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.dynamic-island::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.dynamic-island span {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.iphone-button {
    position: absolute;
    background: #5d5d60;
    border-radius: 2px;
    z-index: 5;
}

.volume-up {
    top: 120px;
    right: -3px;
    width: 3px;
    height: 40px;
}

.volume-down {
    top: 170px;
    right: -3px;
    width: 3px;
    height: 40px;
}

.power-button {
    top: 120px;
    left: -3px;
    width: 3px;
    height: 80px;
}

/* ============================================
   COMPONENTES DO PREVIEW DO SITE
   ============================================ */

.preview-site {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 15px 15px;
    font-family: 'Julius Sans One', sans-serif;
    width: 100%;
    font-size: clamp(12px, 2vw, 14px);
}

.card {
    position: relative;
    width: 100%;
    max-width: 320px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    margin-bottom: 50px;
}

.card:hover {
    transform: translateY(-5px);
}

.image-container {
    width: 85%;
    aspect-ratio: 243 / 329;
    height: auto;
    margin: 10% auto 0;
    background: var(--preview-image) center/cover no-repeat;
    border: 12px solid var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.5s;
    margin-bottom: 35px;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.title {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(15px, 5vw, 20px);
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: 90%;
    font-weight: 400;
    letter-spacing: 1px;
}

.message {
    padding: 0px 15px 15px;
    color: #555;
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.6;
    text-align: center;
    margin-top: 0px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 15px 15px;
}

.declarations {
    width: 100%;
    margin: 0 auto 20px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.declaration-card {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.declaration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.declaration-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(18px, 4vw, 22px);
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.declaration-title:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--light-pink), var(--secondary-color));
    margin: 8px auto;
}

.declaration-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
}

/* Carrossel */
.carousel-container {
    width: 100%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border: 6px solid var(--white);
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Section Divider */
.section-divider {
    width: 90%;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: clamp(16px, 4vw, 18px);
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed var(--light-pink);
    margin: 0 10px;
}

/* Plans Section */
.plans-section {
    width: 100%;
    margin: 0 auto 15px;
    padding: 0 15px;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.plan-item {
    background: var(--white);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s;
}

.plan-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-icon {
    font-size: clamp(24px, 6vw, 30px);
    color: var(--secondary-color);
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.plan-title {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: 8px;
}

.plan-text {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-color);
    line-height: 1.5;
    font-size: clamp(12px, 3vw, 13px);
}

/* Animated Message */
.animated-message {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(18px, 4vw, 20px);
    color: var(--primary-color);
    height: 60px;
    position: relative;
    overflow: hidden;
}

.message-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: rotateMessage 15s infinite;
}

/* Promises */
.promises {
    width: 100%;
    margin: 0 auto 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.promises-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(20px, 5vw, 24px);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promise-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(12px, 3vw, 14px);
    color: var(--text-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--light-pink);
    position: relative;
}

.promise-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    background: var(--white);
    width: 100%;
    margin: 0 auto 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(224, 168, 168, 0.3);
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    background: #000;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper iframe {
    width: 100%;
    height: 180px;
    display: block;
    border: none;
}

.video-error,
.music-error {
    border: 1px solid #f5c6cb;
}

.video-placeholder,
.music-placeholder {
    border: 2px dashed #dee2e6;
}

.music-status {
    border: 1px solid #c3e6cb;
}

.video-message {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(16px, 4vw, 18px);
    color: var(--primary-color);
    text-align: center;
    margin-top: 10px;
}

/* Simple Counter */
.simple-counter {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    padding: 0 20px;
}

.simple-counter p {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(18px, 4vw, 22px);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
    padding: 12px 25px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.simple-counter span {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Music Control */
.preview-music-control {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: none;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.preview-music-control:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ============================================
   VALIDAÇÃO ESPECÍFICA DO PAGAMENTO
   ============================================ */

.optional-section.url-valid {
    border-left-color: #28a745 !important;
    background: rgba(40, 167, 69, 0.1) !important;
}

.optional-section.url-invalid {
    border-left-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
}

.url-status {
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.url-status.valid {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.url-status.invalid {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.validation-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    padding: 8px 12px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* ============================================
   ESTADOS ESPECÍFICOS DO PAGAMENTO
   ============================================ */

.plan-card.selected {
    border-color: #d35d6e;
    box-shadow: 0 10px 30px rgba(211, 93, 110, 0.2);
    transform: translateY(-5px);
}

.plan-select-button.active {
    background: #d35d6e;
    color: white;
}

.payment-method-card.selected {
    border-color: #d35d6e;
    box-shadow: 0 10px 30px rgba(211, 93, 110, 0.2);
    transform: translateY(-5px);
}

/* ============================================
   CARROSSEL MELHORADO (ESPECÍFICO)
   ============================================ */

.carousel-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.carousel-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.carousel-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.carousel-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.preview-thumb {
    transition: transform 0.2s ease;
}

.preview-thumb:hover {
    transform: scale(1.05);
}

.image-counter {
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   FOOTER ESPECÍFICO
   ============================================ */

footer {
    background: #f8bcca;
    color: white;
    padding: 70px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #000000;
    margin-bottom: 25px;
    font-family: 'Dancing Script', ;
    font-size: 2rem;
}

.footer-section p,
.footer-section a {
    color: #000000bf;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light-pink);
}

.footer-bottom {
    border-top: 1px solid #fc5f77;
    padding-top: 30px;
    color: #00000086;
    font-family: 'Cormorant Garamond', serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #c34753;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c347538f;
}

/* ============================================
   RESPONSIVIDADE ESPECÍFICA DO PAGAMENTO
   ============================================ */

@media (max-width: 768px) {

    .plans-grid-14,
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .form-row-payment {
        grid-template-columns: 1fr;
    }

    .pix-qr-box img {
        max-width: 200px;
        height: auto;
    }

    .iphone-15-mockup {
        padding: 8px;
        border-radius: 40px;
    }

    .iphone-frame {
        border-radius: 34px;
    }

    .iphone-screen {
        border-radius: 30px;
    }

    .preview-music-control {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        bottom: 8px;
        left: 8px;
    }

    .carousel-btn {
        padding: 12px 15px;
        font-size: 18px;
    }

    .preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .preview-thumb {
        width: 70px;
        height: 70px;
    }

    .add-image-btn {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 2rem;
        padding-left: 0px;
        padding-right: 0px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: absolute;
        align-items: center;
        width: 100%;
        left: 0%;
        top: 0px;
        z-index: 1000;
        border-radius: 0px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    }

    .iphone-15-mockup {
        max-width: 320px;
        border-radius: 40px;
        padding: 8px;
    }

    .iphone-frame {
        border-radius: 34px;
    }

    .iphone-screen {
        border-radius: 30px;
    }

    .preview-music-control {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
        bottom: 6px;
        left: 6px;
    }

    .preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }

    .preview-thumb {
        width: 60px;
        height: 60px;
    }

    .add-image-btn {
        width: 60px;
        height: 60px;
    }

    .carousel-message {
        font-size: 12px;
        padding: 8px 12px;
    }
}