/* 
  Hotel no Sítio - Main CSS
  Tema tropical baseado no logo
*/

/* Google Fonts - Carregado via HTML para melhor performance */

/* Variables */
:root {
    /* Main colors from logo */
    --primary-color: #332941; /* Roxo escuro do logo */
    --primary-dark: #251e30;
    --secondary-color: #c4e739; /* Verde-limão/amarelo do logo */
    --secondary-dark: #a9c731;
    --accent-color: #ff8c00; /* Laranja para contraste */
    --accent-dark: #e67e00;
    
    /* Neutrals */
    --text-dark: #332941; /* Usando o roxo do logo */
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #332941; /* Roxo escuro do logo */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #332941, #4a3b5e);
    --gradient-secondary: linear-gradient(135deg, #c4e739, #d8f55c);
    --gradient-hero: linear-gradient(rgba(51, 41, 65, 0.7), rgba(51, 41, 65, 0.5)), 
                     url('../images/hero-bg.jpg');
}
/* url('../images/sitio-hero-bg.jpg'); */
/* url('../images/hero-bg.jpg'); */

/* Destaques de texto */
.accent-text {
    color: var(--secondary-color);
    font-weight: 600;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 250px; /* Valor aumentado para compensar a altura do menu */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Logo styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.site-logo {
    width: 180px;
    height: 180px;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    top: 5px;
    z-index: 10;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--primary-color);
}

.btn-outline-light:hover {
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background-color: var(--bg-dark);
    padding: 0.5rem 0 1.2rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 2.5rem 0.7rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Hero Section */
#hero {
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    height: 85vh;
    position: relative;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(51, 41, 65, 0.5), rgba(51, 41, 65, 0.7));
    z-index: -1;
}

.hero-content {
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    color: var(--secondary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.hero-content h2,
.hero-content .h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

/* Info Section */
.info-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: var(--bg-light);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(51, 41, 65, 0.3);
}

.rating-badge i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-rating-badge i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.hero-rating-badge span {
    margin-right: 5px;
}

/* About Section */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--secondary-color);
}

/* Gallery Section */
.gallery-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
}

.carousel {
    border-radius: 5px;
    overflow: hidden;
}

.carousel-inner {
    aspect-ratio: 3 / 2;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-indicators button {
    background-color: var(--primary-color);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.5rem;
}

/* Availability Section */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

.input-group-text {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* Booking Section */
#bookingForm .form-label {
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(196, 231, 57, 0.25);
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Contact Section */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 5px;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item div {
    flex: 1;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem 0;
}

footer h3 {
    color: var(--text-light);
}

.footer-links-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-vertical li {
    margin-bottom: 0.5rem;
}

.footer-links-vertical li:last-child {
    margin-bottom: 0;
}

.footer-links-vertical li a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
}

.footer-links-vertical li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-links-vertical li a i {
    color: var(--secondary-color);
}

.social-links {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
}

.social-links li {
    margin-left: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

/* Modal */
.confirmation-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.modal-title {
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .navbar-nav .nav-item {
        margin: 0 10px;
    }
}

@media (max-width: 991.98px) {
    /* Scroll padding adjustment for mobile */
    html {
        scroll-padding-top: 200px;
    }
    
    /* Adjust section padding for mobile */
    section:not(#hero) {
        padding-top: 6rem;
    }
    
    #hero {
        height: 70vh;
    }
    
    .carousel-item img {
        height: 400px;
    }
    
    .navbar {
        padding: 0.5rem 1rem 1.2rem 1rem;
    }
    
    .navbar .container {
        position: relative;
        flex-direction: column;
    }
    
    .navbar-brand {
        margin: 0 auto;
        padding: 0;
        text-align: center;
        order: 1;
    }
    
    .navbar-toggler {
        position: absolute;
        top: 10px;
        right: 0;
        z-index: 1001;
        padding: 0.25rem 0.5rem;
        order: 2;
    }
    
    .navbar-collapse {
        order: 3;
        background-color: var(--bg-dark);
        padding: 0.5rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 0 0 15px 15px;
    }
    
    .site-logo {
        width: 140px;
        height: 140px;
        top: 10px;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: center;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col-md-6, .col-lg-4 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Touch-friendly styling */
    .info-item, 
    .nav-link,
    .btn {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    
    /* Better spacing for content */
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Improved card readability */
    .info-card, .contact-info {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    
    /* Fix scroll jumping */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better tap targets */
    .info-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
        transition: background-color 0.2s ease;
    }
    
    .info-item:active {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    /* Fix for iOS scroll issues */
    body {
        -webkit-text-size-adjust: 100%;
    }
}

@media (max-width: 767.98px) {
    /* Scroll padding adjustment for smaller screens */
    html {
        scroll-padding-top: 180px;
    }
    
    /* Adjust section padding for smaller screens */
    section:not(#hero) {
        padding-top: 5rem;
    }
    
    #hero {
        height: 60vh;
        padding-top: 60px;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand h1 {
        font-size: 1.4rem;
    }
    
    .site-logo {
        width: 120px;
        height: 120px;
        top: 10px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .info-card {
        margin-bottom: 20px;
    }

    .gallery-container {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .contact-info {
        margin-bottom: 30px;
    }

    /* Improve touch targets for mobile */
    .navbar-nav .nav-link,
    .btn,
    .carousel-indicators button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-control-prev, 
    .carousel-control-next {
        width: 15%;
    }
}

@media (max-width: 575.98px) {
    /* Scroll padding adjustment for mobile */
    html {
        scroll-padding-top: 160px;
    }
    
    /* Adjust section padding for mobile */
    section:not(#hero) {
        padding-top: 4.5rem;
    }
    
    #hero {
        height: auto;
        min-height: 50vh;
        padding: 80px 0 40px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .site-logo {
        width: 120px;
        height: 120px;
        top: 5px;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .navbar-brand h1 {
        font-size: 1.2rem;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    /* Improve mobile spacing */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    /* Full width buttons on mobile */
    .btn-mobile-full {
        width: 100%;
        margin-bottom: 10px;
    }

    .navbar {
        padding: 0.5rem 1rem 1.2rem 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 0;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .navbar-toggler {
        top: 5px;
        padding: 0.2rem 0.4rem;
    }
    
    .navbar-brand {
        margin: 0;
        padding: 0;
    }
}

/* Even smaller screens */
@media (max-width: 375px) {
    .site-logo {
        width: 100px;
        height: 100px;
        top: 2px;
    }
    
    .navbar-brand h1 {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }

    .navbar {
        padding: 0.5rem 0.5rem 1rem 0.5rem;
    }
}

/* Google Reviews Styles */
.google-reviews-container {
    margin: 0 auto;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-subheader h3 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .google-reviews-container {
        margin-top: 1rem;
    }
}

/* Syncing Message Styles */
.syncing-message {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.syncing-icon {
    margin-bottom: 1.5rem;
}

.syncing-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: spin 2s linear infinite;
}

.syncing-message h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.syncing-message p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.support-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.support-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: underline;
}

.support-link:hover {
    color: var(--accent-dark);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Section padding */
section:not(#hero) {
    padding-top: 7rem;
    padding-bottom: 3rem;
    position: relative;
}

section h2 {
    margin-top: -20px; /* Compensar parte do padding-top */
}

/* Responsive scroll padding */
@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 200px;
    }
    
    section:not(#hero) {
        padding-top: 6rem;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 180px;
    }
    
    section:not(#hero) {
        padding-top: 5rem;
    }
}

@media (max-width: 575.98px) {
    html {
        scroll-padding-top: 160px;
    }
    
    section:not(#hero) {
        padding-top: 4.5rem;
    }
}

/* Menu após rolagem */
.navbar-scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled .site-logo {
    width: 120px;
    height: 120px;
    top: 5px;
    transition: all 0.3s ease;
}

.navbar-scrolled.navbar {
    padding: 0.3rem 0 0.7rem 0;
}

.navbar-scrolled .navbar-nav .nav-link {
    padding: 1.5rem 0.7rem;
}

/* Rules Section */
#regras {
    background-color: var(--bg-light);
}

/* Rules Page (standalone) */
.rules-page-section {
    padding-top: 2rem !important;
    min-height: calc(100vh - 200px);
}

.rules-page-section .section-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.rules-page-section .rules-card-header h2 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.rules-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rules-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rules-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rules-card-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rules-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.rules-list li i.bi-exclamation-triangle {
    color: var(--accent-color);
}

.rules-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    gap: 0.5rem;
}

.schedule-day {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 140px;
}

.schedule-time {
    color: var(--text-dark);
    font-weight: 500;
    background: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.schedule-type {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: auto;
}

.rules-note {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rules-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.rules-note p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .rules-card {
        padding: 1.25rem;
    }

    .rules-card-header h3 {
        font-size: 1rem;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule-type {
        margin-left: 0;
    }

    .rules-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Pricing Section */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.35rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.pricing-header h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.pricing-body .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-body .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-body .value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-body .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-body .discount-info {
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.rules-note ul {
    list-style: none;
    padding-left: 0;
}

.rules-note ul li {
    padding: 0.25rem 0;
}

.rules-note ul li::before {
    content: "•";
    margin-right: 0.5rem;
}

@media (max-width: 767.98px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-body .value {
        font-size: 3rem;
    }

    .pricing-header i {
        display: none;
    }
} 