:root {
    --primary-color: #2C5530;
    --secondary-color: #7BA05B;
    --accent-color: #A2C579;
    --text-color: #333333;
    --light-bg: #F5F7F2;
    --primary-900: #2C5530;
    --accent-500: #A2C579;
    --primary-400: #2C5530;
    --neutral-100: #A2C579;
    --primary-900: #1B3B24;
    --primary-700: #2C5530;
    --primary-400: #5B8C5A;
    --accent-500: #D4A55E;
    --neutral-100: #F9FBF7;
    --neutral-700: #3A3A3A;
    --gradient-green: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-400) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --radius-lg: 1rem;
    --radius-sm: 0.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}
section {
    scroll-margin-top: 110px !important;
}
/* Estilo para os ícones de contato no mobile */
.mobile-contact-icons {
    font-size: 1.2rem;
}
a{
    text-decoration: none;
}
.mobile-contact-icons a {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-contact-icons a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.mobile-contact-icons .fa-whatsapp {
    color: #25D366;
}

.mobile-contact-icons .fa-phone-alt {
    color: #333;
}

/* Garantir que em telas maiores os ícones não apareçam */
@media (min-width: 992px) {
    .mobile-contact-icons {
        display: none !important;
    }
}
.whatsapp-icon {
    background-color: #25D366;
    padding: 15px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-bg);
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: all 0.3s ease;
}

.whatsapp-icon:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-5px);
    }

/* ========== COOKIE BANNER ========== */
/* Altere de .cookie-banner para */
#cookieBanner {
    background: var(--primary-900);
    border-top: 2px solid var(--accent-500);
    color: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.cookie-policy-link {
    color: var(--accent-500);
    transition: var(--transition);
}

.cookie-policy-link:hover {
    color: var(--primary-400);
    text-decoration: none;
}

/* Botões */
#acceptCookies {
    background: var(--accent-500);
    color: var(--primary-900);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.8rem;
}

#acceptCookies:hover {
    background: var(--primary-400);
    color: white;
    transform: translateY(-2px);
}

#cookieSettings {
    border: 2px solid var(--accent-500);
    color: var(--accent-500);
    background: transparent;
}

#cookieSettings:hover {
    background: var(--accent-500);
    color: var(--primary-900);
}

/* Modal */
.cookie-modal .modal-header {
    background: var(--primary-900);
    color: white;
}

.cookie-modal .modal-title {
    font-family: 'Playfair Display';
    color: var(--accent-500);
}

.cookie-category {
    background: var(--neutral-100);
    border: 1px solid var(--primary-400);
}

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

.btn-custom-accept {
    background: var(--accent-500) !important;
    border: 2px solid var(--accent-500) !important;
    color: var(--primary-900) !important;
}

.modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Footer Social Links */
.social-links a {
    color: var(--accent-500);
    background: rgba(255, 255, 255, 0.05);

}

.social-links a:hover {
    background: var(--accent-500);
    color: var(--primary-900);
}

.social-links a {
    color: var(--accent-500);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-500);
    color: var(--primary-900);
    transform: scale(1.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.header-container {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Quando o usuário rolar para baixo */


/* Ajuste da logo */
.logo-container {
    padding: 1.5rem 0;
    text-align: center;
    transition: padding 0.3s ease-in-out;
}

.logo-container img {
    height: 100px;
    /* Usa height em vez de max-height */
    transition: height 0.3s ease-in-out;
}

/* Reduz tamanho da logo ao rolar */
.header-container.scrolled .logo-container {
    padding: 0.5rem 0;
}

.header-container.scrolled .logo-container img {
    height: 80px;
    /* Logo menor ao rolar */
}


.navbar {
    background-color: var(--primary-color);
    padding: 0;
}

.navbar-nav {
    margin: 0 auto;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 70%;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    padding: 0.5rem;
    border: none;
  

}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: inline-block;

}
.navbar-toggler .hamburger span {
    width: 20px;  /* Reduz a largura das barras */
    height: 3px;  /* Reduz a altura das barras */
    margin: 1px 0; /* Reduz o espaçamento entre as barras */
}
.hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 20px;
    background: white;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;

}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

@media (max-width: 768px) {
    .logo-container {
        padding: 15px 0;
    }

    .logo-container img {
        max-height: 100px;
    }

    .navbar-collapse {
        background-color: var(--primary-color);
    }

    .nav-link {
        text-align: center;
        padding: 0.8rem 1rem !important;
    }
}

/* Navbar Typography */
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: white !important;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
}

/* Status Bar Typography */
.status-bar {
    background-color: rgba(44, 85, 48, 0.95);

    position: relative;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

/* Status Items Container */
.status-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    padding: 0.5rem;
    color: white;
    flex-wrap: wrap;
}

/* Navigation Buttons Container */
.status-item .mt-2 {
    display: flex;
    gap: 0.5rem;
    margin-top: 0 !important;
    margin-left: 0.5rem;
}

/* Navigation Buttons Styling */
.status-item .btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

/* Adicione ao style.css */
.map-section {
    background-color: var(--light-bg);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.supplies-section {
    padding: 6rem 0;
}

.supply-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.supply-card:hover {
    transform: translateY(-10px);
}

.supply-card img {
    height: 250px;
    object-fit: cover;
}

.supply-card .card-body {
    padding: 1.5rem;
    text-align: center;
}

.supply-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Google Maps Button */
#google-maps-link {
    background-color: white;
    color: #4285F4;
}

#google-maps-link:hover {
    background-color: #4285F4;
    color: white;
}

/* Waze Button */
#waze-link {
    background-color: #33CCFF;
    color: white;
}

#waze-link:hover {
    background-color: #25a4cc;
}

/* Add icons to buttons */
#google-maps-link::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#waze-link::before {
    content: '\f1b9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Icon styling */
.status-item i {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .status-bar .row {
        margin: 0;
    }

    .status-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .status-item:last-child {
        border-bottom: none;
    }

    .status-item .mt-2 {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem !important;
    }

    .status-item .btn {
        padding: 0.4rem 1rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .status-item {
        flex-direction: column;
        gap: 0.4rem;
    }

    .status-item .mt-2 {
        margin-top: 0.5rem !important;
    }
}

@media (min-width: 992px) {
    .status-item {
        flex-direction: row;
        justify-content: center;
    }

    .status-item span {
        white-space: nowrap;
    }
}

/* Store Status Styling */
#store-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.text-success {
    color: #4CAF50 !important;
}

.text-danger {
    color: #f44336 !important;
}

/* Dropdown Items (if you have any) */
.dropdown-menu {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 1rem !important;
        letter-spacing: 0.2px;
    }

    .status-item {
        font-size: 0.8rem;
        letter-spacing: 0.1px;
    }

    /* Ajuste da logo */
    .logo-container {
        padding: 1.5rem 0;
        text-align: center;
        transition: padding 0.3s ease-in-out;
    }

    .logo-container img {
        height: 70px;
        /* Usa height em vez de max-height */
        transition: height 0.3s ease-in-out;
    }

    /* Reduz tamanho da logo ao rolar */
    .header-container.scrolled .logo-container {
        padding: 0.5rem 0;
    }

    .header-container.scrolled .logo-container img {
        height: 60px;
        /* Logo menor ao rolar */
    }
}

/* Larger Screens */
@media (min-width: 1200px) {
    .nav-link {
        font-size: 1rem;
    }

    .status-item {
        font-size: 0.9rem;
    }
}

/* When header is scrolled */
.header-container.scrolled .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem !important;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('/img/hero.jpeg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    position: relative;
}

.status-bar {
    background-color: rgba(44, 85, 48, 0.95);
    position: relative;
    z-index: 10;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-cards {
    margin-top: -100px;
    position: relative;
    z-index: 20;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .feature-cards {
        margin-top: 2rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-leaf-bg {
    position: absolute;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('/api/placeholder/200/200') repeat;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-year {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.about-stats {
    background: white;
    border-radius: 10px;
    padding: 3rem 0;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region-coverage {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.region-tag {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

.special-dates-section {
    padding: 6rem 0;
    background-color: white;
}

.occasions-tabs {
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 3rem;
}

.occasion-tab {
    padding: 1rem 2rem;
    border: none;
    background: none;
    color: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.occasion-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.occasion-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.plant-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

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

.plant-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.plant-info {
    padding: 1.5rem;
}

.plant-meaning {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.date-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.seasonal-banner {
    padding: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.seasonal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('/api/placeholder/200/200') no-repeat;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .occasions-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
    }

    .occasion-tab {
        padding: 0.8rem 1.2rem;
    }
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0 0;
    position: relative;
}

.footer-leaf-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/freepik__expand__54150.jpeg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.footer-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.business-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.footer-bottom a {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.newsletter-form {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: white;
}

@media (max-width: 768px) {
    .footer [class*="col-"] {
        margin-bottom: 2rem;
    }

    .business-hours {
        margin-bottom: 2rem;
    }
}
/* Adicione ao style.css */
.professional-consult-section {
    background: var(--neutral-100);
    border-top: 1px solid rgba(44, 85, 48, 0.1);
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.consultation-card {
    border: 1px solid rgba(44, 85, 48, 0.15);
    transition: var(--transition);
}

.consultation-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.form-floating label {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    opacity: 1;
    color: var(--primary-700);
}

.form-control {
    border: 1px solid rgba(44, 85, 48, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.btn-success {
    background-color: var(--primary-700) !important;
    border: 2px solid var(--primary-700) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-success:hover {
    background-color: var(--primary-900) !important;
    transform: translateY(-2px);
}

.invalid-feedback {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .consultation-card {
        padding: 2rem !important;
    }
    
    .btn-success {
        width: 100%;
        padding: 1rem !important;
    }
}