@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8C04A4;
    --primary-light: #C066E8;
    --primary-lighter: #E8D4F8;
    --text-dark: #333;
    --text-gray: #666;
    --text-light: #999;
    --border: #f0f0f0;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    
    /* Service Colors */
    --color-mapa: #9c27b0;
    --color-mapa-light: #e1bee7;
    --color-mapa-lighter: #f3e5f5;
    
    --color-revolucao: #ff6f00;
    --color-revolucao-light: #ffe0b2;
    --color-revolucao-lighter: #fff3e0;
    
    --color-consultas: #1976d2;
    --color-consultas-light: #90caf9;
    --color-consultas-lighter: #e3f2fd;
    
    --color-reiki: #00897b;
    --color-reiki-light: #80cbc4;
    --color-reiki-lighter: #e0f2f1;
}

/* Wrapper */
.astral-services-wrapper {
    background: #fff;
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    font-family: 'Work Sans', sans-serif;
}

.astral-services-wrapper .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.hero-content {
    position: relative;
}

.hero-section h1 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-section h1 i {
    color: var(--primary);
    font-size: 2.4rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Container */
.services-carousel-wrapper {
    position: relative;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    width: 100%;
}

/* Service Card */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--service-color, var(--primary));
}

.service-card:hover {
    border-color: var(--service-color, var(--primary-light));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Service Colors */
.service-card[data-service="mapa_astral"] {
    --service-color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] {
    --service-color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] {
    --service-color: var(--color-consultas);
}

.service-card[data-service="reiki"] {
    --service-color: var(--color-reiki);
}

/* Service Header */
.service-header {
    background: linear-gradient(135deg, var(--service-color, var(--primary)) 0%, var(--service-color, var(--primary)) 100%);
    padding: 28px 20px;
    text-align: center;
    border-bottom: 3px solid var(--service-color, var(--primary));
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-card[data-service="mapa_astral"] .service-header {
    background: linear-gradient(135deg, var(--color-mapa) 0%, var(--color-mapa) 100%);
}

.service-card[data-service="revolucao_solar"] .service-header {
    background: linear-gradient(135deg, var(--color-revolucao) 0%, var(--color-revolucao) 100%);
}

.service-card[data-service="consultas_astrologicas"] .service-header {
    background: linear-gradient(135deg, var(--color-consultas) 0%, var(--color-consultas) 100%);
}

.service-card[data-service="reiki"] .service-header {
    background: linear-gradient(135deg, var(--color-reiki) 0%, var(--color-reiki) 100%);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 28px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-card[data-service="mapa_astral"] .service-icon i {
    color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] .service-icon i {
    color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] .service-icon i {
    color: var(--color-consultas);
}

.service-card[data-service="reiki"] .service-icon i {
    color: var(--color-reiki);
}

.service-header h2 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Service Body */
.service-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-intro {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--service-color, var(--primary));
    margin: 0;
    line-height: 1.5;
}

.service-card[data-service="mapa_astral"] .service-intro {
    color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] .service-intro {
    color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] .service-intro {
    color: var(--color-consultas);
}

.service-card[data-service="reiki"] .service-intro {
    color: var(--color-reiki);
}

.service-description {
    margin-bottom: 0;
    flex: 1;
    font-size: 0.85rem;
}

.service-description p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-description .highlight {
    font-weight: 600;
    color: var(--service-color, var(--primary));
}

.service-card[data-service="mapa_astral"] .highlight {
    color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] .highlight {
    color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] .highlight {
    color: var(--color-consultas);
}

.service-card[data-service="reiki"] .highlight {
    color: var(--color-reiki);
}

/* How Works Section */
.service-how-works {
    display: block;
    margin: 16px 0 0 0;
    padding: 12px 12px 0 12px;
    border-left: 3px solid var(--service-color, var(--primary));
}

.service-card[data-service="mapa_astral"] .service-how-works {
    border-left-color: var(--color-mapa-light);
}

.service-card[data-service="revolucao_solar"] .service-how-works {
    border-left-color: var(--color-revolucao-light);
}

.service-card[data-service="consultas_astrologicas"] .service-how-works {
    border-left-color: var(--color-consultas-light);
}

.service-card[data-service="reiki"] .service-how-works {
    border-left-color: var(--color-reiki-light);
}

.service-how-works h3 {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-how-works h3 i {
    color: var(--service-color, var(--primary));
}

.service-card[data-service="mapa_astral"] .service-how-works h3 i {
    color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] .service-how-works h3 i {
    color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] .service-how-works h3 i {
    color: var(--color-consultas);
}

.service-card[data-service="reiki"] .service-how-works h3 i {
    color: var(--color-reiki);
}

.service-how-works p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
    display: block;
    margin: 16px 0 0 0;
    padding: 12px 12px 0 12px;
    border-left: 3px solid var(--service-color, var(--primary));
}

.service-benefits h3 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.service-benefits h3 i {
    color: var(--service-color, var(--primary));
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-benefits li:last-child {
    margin-bottom: 0;
}

.service-benefits li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--service-color, var(--primary));
}

.service-card[data-service="mapa_astral"] .service-benefits li::before {
    color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] .service-benefits li::before {
    color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] .service-benefits li::before {
    color: var(--color-consultas);
}

.service-card[data-service="reiki"] .service-benefits li::before {
    color: var(--color-reiki);
}

/* Service Footer */
.service-footer {
    margin-top: auto;
    padding: 16px 20px 20px 20px;
    border-top: 1px solid var(--border);
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    text-align: center;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 500;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--service-color, var(--primary));
}

.service-card[data-service="mapa_astral"] .price-value {
    color: var(--color-mapa);
}

.service-card[data-service="revolucao_solar"] .price-value {
    color: var(--color-revolucao);
}

.service-card[data-service="consultas_astrologicas"] .price-value {
    color: var(--color-consultas);
}

.service-card[data-service="reiki"] .price-value {
    color: var(--color-reiki);
}

.price-info {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Select Button */
.btn-select {
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--service-color, var(--primary)) 0%, rgba(0, 0, 0, 0.1) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card[data-service="mapa_astral"] .btn-select {
    background: linear-gradient(135deg, var(--color-mapa) 0%, rgba(156, 39, 176, 0.8) 100%);
}

.service-card[data-service="revolucao_solar"] .btn-select {
    background: linear-gradient(135deg, var(--color-revolucao) 0%, rgba(255, 111, 0, 0.8) 100%);
}

.service-card[data-service="consultas_astrologicas"] .btn-select {
    background: linear-gradient(135deg, var(--color-consultas) 0%, rgba(25, 118, 210, 0.8) 100%);
}

.service-card[data-service="reiki"] .btn-select {
    background: linear-gradient(135deg, var(--color-reiki) 0%, rgba(0, 137, 123, 0.8) 100%);
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-select:active {
    transform: translateY(0);
}

/* Navigation - Removed */ 
/* Swiper not used anymore */

/* Booking Section */
.booking-section {
    background: transparent;
    border-radius: 0;
    padding: 80px 0 40px 0;
    margin-top: 40px;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.booking-header h2 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.booking-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Alerts */
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    border-left: 4px solid;
}

.alert-danger {
    background: #ffebee;
    color: #c62828;
    border-left-color: #c62828;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left-color: #2e7d32;
}

.alert strong {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 9px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 2px var(--primary-lighter);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
    font-size: 0.9rem;
}

/* Payment Section */
.payment-section {
    grid-column: 1 / -1;
    margin-bottom: 28px;
    padding-top: 24px;
}

.payment-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.payment-section h3 i {
    color: var(--primary);
    font-size: 0.9rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-option {
    position: relative;
}

.payment-option input {
    display: none;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
    gap: 6px;
}

.payment-option input:checked ~ .payment-card {
    border-color: var(--primary);
    background: var(--primary-lighter);
    box-shadow: 0 0 0 2px var(--primary-lighter);
}

.payment-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

.payment-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-desc {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Summary Section */
.summary-section {
    grid-column: 1 / -1;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.summary-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row strong {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 8px;
    border-top: 1px solid var(--primary-light);
}

/* Confirm Button */
.btn-confirm {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #9D0DB8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.btn-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
}

.btn-confirm:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-carousel-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .service-body {
        padding: 16px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .astral-services-wrapper .container {
        padding: 0 16px !important;
    }

    .hero-section {
        margin-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .services-carousel-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 60px;
    }

    .service-body {
        padding: 16px;
        gap: 10px;
    }

    .service-footer {
        padding: 12px 16px 16px 16px;
        width: 100%;
        gap: 10px;
    }

    .btn-select {
        width: 100%;
    }

    .booking-section {
        padding: 60px 0 40px 0;
    }

    .booking-header h2 {
        font-size: 1.6rem;
    }

    .booking-form {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .payment-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .payment-card {
        padding: 12px;
    }
}

