:root {
    --dark-sorvete: #2a1118;
    --milk-sorvete: #8d485e;
    --caramel-gold: #e5a93b;
    --light-gold: #f2c288;
    --cream: #faf5f6;
    --text-dark: #382025;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 40px rgba(42, 17, 24, 0.4);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 span, h1 span {
    color: var(--caramel-gold);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--caramel-gold);
    color: var(--dark-sorvete);
    box-shadow: 0 4px 15px rgba(229, 169, 59, 0.4);
}

.btn-primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 169, 59, 0.6);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 500px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-sorvete), var(--milk-sorvete));
    color: var(--text-light);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.04"><circle cx="50" cy="50" r="40" fill="%23e5a93b"/></svg>') repeat;
    background-size: 200px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: rgba(229, 169, 59, 0.2);
    color: var(--caramel-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.0rem;
    margin-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-image-mobile {
    display: none;
}

.floating-book {
    max-width: 360px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--shadow-heavy));
    border-radius: 10px;
}

@keyframes float {
    0% { transform: translateY(0px) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(0deg); }
    100% { transform: translateY(0px) rotateY(-5deg); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--cream);
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-sorvete);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--caramel-gold);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--dark-sorvete);
    color: var(--caramel-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-sorvete);
}

/* Author Section */
.author {
    padding: 100px 0;
    background-color: #200d12;
    background-image: radial-gradient(circle at 50% 50%, #3e1b24 0%, #1c090c 100%);
    color: var(--text-light);
    border-top: 2px solid var(--caramel-gold);
    border-bottom: 2px solid var(--caramel-gold);
    overflow: hidden;
}

.author-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.author-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.author-photo-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
    background: linear-gradient(135deg, var(--caramel-gold), var(--light-gold));
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid var(--caramel-gold);
    border-radius: 16px;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.author-photo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(229, 169, 59, 0.25);
}

.author-photo-wrapper:hover::before {
    opacity: 0.9;
}

.author-photo {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 8px;
    border: 3px solid var(--dark-sorvete);
}

.author-book-badge {
    max-width: 260px;
    margin-top: 10px;
    border-top: 1px dashed rgba(229, 169, 59, 0.3);
    padding-top: 20px;
}

.author-book-badge .badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    line-height: 1.2;
}

.author-book-badge .badge-separator {
    color: var(--caramel-gold);
    margin: 8px 0;
    font-size: 1rem;
}

.author-book-badge .badge-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--caramel-gold);
    margin-bottom: 3px;
}

.author-book-badge .badge-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
}

.author-book-badge .badge-desc {
    font-size: 0.85rem;
    font-style: italic;
    color: #aaa;
    margin-top: 10px;
    line-height: 1.4;
}

.author-text {
    flex: 1.5;
}

.author-text h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

.author-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--caramel-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(229, 169, 59, 0.2);
    padding-bottom: 15px;
}

.author-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.author-highlights {
    list-style: none;
    margin: 30px 0;
}

.author-highlights li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.author-highlights i {
    color: var(--caramel-gold);
    border: 1px solid var(--caramel-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background-color: rgba(229, 169, 59, 0.05);
}

.author-highlights span {
    flex: 1;
}



/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--cream);
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.rating-stars {
    color: var(--caramel-gold);
    font-size: 1.2rem;
    margin-top: 15px;
}

.rating-stars span {
    color: #666;
    font-size: 1rem;
    margin-left: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--caramel-gold);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.client-info h4 {
    color: var(--dark-sorvete);
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-sorvete), #1c090e);
    color: var(--text-light);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.book-mockup-small {
    margin-bottom: 30px;
}

.shadow-img {
    height: 300px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.price-box {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--caramel-gold);
    font-family: 'Montserrat', sans-serif;
}

.installment-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #0c0406;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: var(--caramel-gold);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--caramel-gold);
}

.disclaimer {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
    max-width: 800px;
    margin: 20px auto 0 auto;
}

/* Floating CTA */
@keyframes floatCta {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
}

.floating-cta-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-cta-book {
    height: 117px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.5));
    animation: floatCta 3s ease-in-out infinite;
    margin-bottom: 5px;
    z-index: 2;
    transform-origin: bottom center;
}

.floating-cta {
    position: relative;
    background-color: var(--caramel-gold);
    color: var(--dark-sorvete);
    padding: 15px 25px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(229, 169, 59, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    z-index: 1;
}

.floating-cta i {
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    background-color: var(--light-gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(229, 169, 59, 0.7);
}

/* Preview Gallery (Carousel) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    cursor: pointer;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 3px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.03);
}

/* Biblioteca Section */
.library-section {
    padding: 100px 0;
    background-color: var(--cream);
    border-top: 1px solid rgba(42, 17, 24, 0.1);
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.library-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(229, 169, 59, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.library-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(42, 17, 24, 0.1);
    border-color: var(--caramel-gold);
}

.library-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-sorvete);
    color: var(--caramel-gold);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.library-book-img {
    margin: 20px auto 25px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.library-book-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.08));
    transition: var(--transition);
}

.library-card:hover .library-book-img img {
    transform: scale(1.05) rotate(1deg);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
}

.library-card h3 {
    font-size: 1.5rem;
    color: var(--dark-sorvete);
    margin-bottom: 15px;
}

.library-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.library-price {
    margin-bottom: 25px;
    border-top: 1px dashed rgba(42, 17, 24, 0.1);
    padding-top: 20px;
}

.library-price .old-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: #888;
    margin-bottom: 2px;
}

.library-price .new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-sorvete);
}

.library-buttons {
    display: flex;
    gap: 12px;
}

.library-buttons .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn-buy {
    background-color: var(--caramel-gold);
    color: var(--dark-sorvete);
}

.btn-buy:hover {
    background-color: var(--light-gold);
}

.btn-details {
    background-color: transparent;
    color: var(--dark-sorvete);
    border: 2px solid var(--caramel-gold);
}

.btn-details:hover {
    background-color: var(--caramel-gold);
    color: var(--dark-sorvete);
}

/* Combos */
.combos-wrapper {
    background: linear-gradient(135deg, var(--dark-sorvete), #21090f);
    color: var(--text-light);
    border-radius: 16px;
    padding: 60px 40px;
    border: 2px solid var(--caramel-gold);
    box-shadow: var(--shadow-heavy);
}

.combo-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.combo-badge {
    background: var(--caramel-gold);
    color: var(--dark-sorvete);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.combo-header h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.combo-header p {
    color: #ccc;
    font-size: 1.05rem;
}

.combos-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.combo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 169, 59, 0.15);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.combo-card:hover {
    border-color: var(--caramel-gold);
    background: rgba(255, 255, 255, 0.05);
}

.featured-combo {
    border: 2px solid var(--caramel-gold);
    background: rgba(229, 169, 59, 0.05);
}

.featured-combo:hover {
    background: rgba(229, 169, 59, 0.08);
}

.combo-tag {
    position: absolute;
    top: -15px;
    background: var(--caramel-gold);
    color: var(--dark-sorvete);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.combo-books-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 180px;
    position: relative;
    width: 100%;
}

.combo-img-stacked {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
    position: absolute;
}

/* Stack effect */
.combo-img-stacked:nth-child(1) {
    transform: translateX(-50px) rotate(-10deg) scale(0.9);
    z-index: 1;
}

.combo-img-stacked:nth-child(2) {
    z-index: 3;
}

.combo-img-stacked:nth-child(3) {
    transform: translateX(50px) rotate(10deg) scale(0.95);
    z-index: 2;
}

.combo-img-stacked:nth-child(4) {
    transform: translateX(100px) rotate(15deg) scale(0.9);
    z-index: 1;
}

.combo-card:hover .combo-img-stacked:nth-child(1) {
    transform: translateX(-70px) rotate(-15deg) scale(0.95);
}

.combo-card:hover .combo-img-stacked:nth-child(2) {
    transform: translateY(-5px) scale(1.05);
}

.combo-card:hover .combo-img-stacked:nth-child(3) {
    transform: translateX(70px) rotate(15deg) scale(1.0);
}

.combo-card:hover .combo-img-stacked:nth-child(4) {
    transform: translateX(120px) rotate(20deg) scale(0.95);
}

.combo-details {
    width: 100%;
}

.combo-details h4 {
    font-size: 1.6rem;
    color: var(--caramel-gold);
    margin-bottom: 15px;
}

.combo-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.combo-price-box {
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.combo-price-box .old-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
}

.combo-price-box .new-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--caramel-gold);
    line-height: 1;
}

.combo-price-box .installment-price {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 5px;
    display: block;
}

.btn-combo-buy {
    background-color: var(--caramel-gold);
    color: var(--dark-sorvete);
    width: 100%;
}

.btn-combo-buy:hover {
    background-color: var(--light-gold);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content, .author-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .author-highlights li {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-image {
        display: none !important;
    }

    .hero-image-mobile {
        display: flex;
        justify-content: center;
        perspective: 1000px;
        margin: 20px auto 40px;
        width: 100%;
        max-width: 280px;
    }

    .hero-image-mobile img {
        max-width: 100%;
        height: auto;
        animation: float 6s ease-in-out infinite;
        filter: drop-shadow(var(--shadow-heavy));
        border-radius: 10px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .bonus-content h2 {
        font-size: 2.2rem;
    }

    .bonus-features {
        grid-template-columns: 1fr;
    }

    .combos-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-grid .testimonial-card:nth-child(n+4) {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .security-badges {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-img {
        height: auto;
        object-fit: contain;
    }

    .gallery-item {
        padding: 8px;
    }

    .hero {
        padding: 90px 40px !important;
        text-align: left;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 25px !important;
        padding-right: 25px !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* Combo Card Buttons & Contrast adjustments */
.combo-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
}
.combo-buttons .btn {
    flex: 1;
    width: auto;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 6px;
}
.combo-card .btn-details {
    color: var(--text-light);
    border-color: var(--caramel-gold);
}
.combo-card .btn-details:hover {
    background-color: var(--caramel-gold);
    color: var(--dark-sorvete);
}

@media (max-width: 576px) {
    .combo-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .combo-buttons .btn {
        width: 100%;
    }
}

/* Discount Badge & Price Note */
.discount-badge {
    display: inline-block;
    background-color: rgba(229, 169, 59, 0.15);
    color: var(--caramel-gold);
    border: 1px solid var(--caramel-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.price-note {
    display: block;
    font-size: 0.85rem;
    color: #ff9e9e;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.5px;
}
