/* ============================================
   MIGA MADRE - CUSTOM STYLES (Bootstrap-Compatible)
   ============================================ */

/* ============================================
   1. VARIABLES Y RESET BÁSICO
   ============================================ */
:root {
    --primary-color: #fa7779;
    --secondary-color: #ffd5c4;
    --accent-color: #ecc287;
    --cream: #fdf8f3;
    --wheat-gold: #f4a460;
    --dark-brown: #3e2723;
    --text-dark: #4a4a4a;
    --text-light: #6c757d;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
    color: var(--dark-brown);
    font-weight: 700;
}

/* ============================================
   2. NAVBAR FIXES
   ============================================ */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    margin-left: 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   3. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    overflow: hidden;
    background:
        url('../images/pan.jpg') center/cover no-repeat fixed;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0.5;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    color: var(--cream);
}

.hero-buttons {
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    padding: 0.6rem 2rem;
    margin-right: 0;
    margin-bottom: 0;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* ============================================
   4. BREAD ILLUSTRATION
   ============================================ */


.ripple-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: ripple 2s ease-out infinite;
}

.ripple-effect.ripple-delay {
    animation-delay: 0.5s;
    opacity: 0.15;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes breadFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   5. STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, rgba(212, 135, 111, 0.1), rgba(244, 164, 96, 0.1));
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(212, 135, 111, 0.2);
}

.stat-icon i {
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   6. QUIÉNES SOMOS SECTION
   ============================================ */
#quienes-somos {
    padding: 3rem 0;
}

.about-image-wrapper {
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-composition {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.composition-center {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--wheat-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(212, 135, 111, 0.4);
    z-index: 2;
}

.bread-icon-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    z-index: 3;
}

.ingredient-circle {
    position: absolute;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.9);
    z-index: 6;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.ingredient-circle i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

/* Circle positions - desktop 160px */
.circle-1 {
    left: 50%;
    top: calc(50% - 160px);
    transform: translateX(-50%);
    animation: float-y-1 4.2s ease-in-out infinite;
}

.circle-2 {
    left: calc(50% + 81px) !important;
    top: 50%;
    transform: translateY(-50%);
    animation: float-x-2 4.6s ease-in-out infinite;
}

.circle-3 {
    left: 50%;
    top: calc(50% + 81px) !important;
    transform: translateX(-50%);
    animation: float-y-3 5s ease-in-out infinite;
}

.circle-4 {
    left: calc(50% - 160px);
    top: 50%;
    transform: translateY(-50%);
    animation: float-x-4 4.4s ease-in-out infinite;
}

@keyframes float-y-1 {

    0%,
    100% {
        top: calc(50% - 160px);
    }

    50% {
        top: calc(50% - 150px);
    }
}

@keyframes float-x-2 {

    0%,
    100% {
        left: calc(50% + 160px);
    }

    50% {
        left: calc(50% + 150px);
    }
}

@keyframes float-y-3 {

    0%,
    100% {
        top: calc(50% + 160px);
    }

    50% {
        top: calc(50% + 170px);
    }
}

@keyframes float-x-4 {

    0%,
    100% {
        left: calc(50% - 160px);
    }

    50% {
        left: calc(50% - 150px);
    }
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   7. INSTAGRAM SECTION
   ============================================ */
.instagram-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 600px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.instagram-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 280px;
    flex-shrink: 0;
}

.instagram-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.instagram-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.instagram-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.instagram-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   7B. PRODUCTOS SECTION
   ============================================ */
#productos {
    padding: 5rem 0;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(212, 135, 111, 0.15), rgba(244, 164, 96, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.product-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 1.4rem;
    text-align: justify;
}

.product-details {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.product-weight,
.product-time {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-weight i,
.product-time i {
    color: var(--primary-color);
    font-size: 1rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(212, 135, 111, 0.1), rgba(244, 164, 96, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* ============================================
   7C. CONTACTO SECTION
   ============================================ */
#contacto {
    padding: 5rem 0;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-brown);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--wheat-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.contact-items-inline {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-items-inline .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 0;
    flex: 1;
}

.contact-items-inline .contact-icon {
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--wheat-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 135, 111, 0.3);
}

.contact-map-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: white;
}

/* ============================================
   9. SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   10. WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    pointer-events: none;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
}

.whatsapp-bubble i {
    font-size: 2rem;
    color: white;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow: hidden;
}

.whatsapp-chat.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px 15px 0 0;
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.whatsapp-info span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.2rem;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.whatsapp-close:hover {
    transform: rotate(90deg);
}

.whatsapp-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f5f5f5;
}

.whatsapp-message {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.whatsapp-message p {
    margin: 0;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #333;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-time {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    padding-right: 0.5rem;
}

.whatsapp-footer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 15px 15px;
}

.whatsapp-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-family: 'Crimson Text', serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.whatsapp-input:focus {
    border-color: #25D366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-send-btn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.whatsapp-send-btn:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

/* ============================================
   10.5 RESPONSIVE - ULTRA WIDE (1440px and above)
   ============================================ */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 9.5rem;
    }

    .hero-subtitle {
        font-size: 3.7rem;
    }

    .hero-description {
        font-size: 1.6rem;
        max-width: 100%;
    }

    .hero-buttons .btn {
        padding: 0.75rem 2.5rem;
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1.5rem;
    }

    #quienes-somos p {
        font-size: 1.4rem !important;
    }

    .about-features .feature-item {
        font-size: 1.4rem !important;
    }

    .ripple-effect {
        width: 300px;
        height: 300px;
    }

    .composition-center {
        width: 300px;
        height: 300px;
    }

    .ingredient-circle {
        width: 94px;
        height: 94px;
    }

    .circle-1 {
        top: calc(50% - 180px) !important;
    }

    .circle-4 {

        left: calc(50% - 190px) !important;
    }

    .circle-2 {
        left: calc(50% + 92px) !important;
    }

    .circle-3 {
        top: calc(50% + 90px) !important;
    }

    .ingredient-circle span {
        font-size: 1.3rem;
    }

    .bread-icon-large {
        font-size: 5.6rem;
    }

    .contact-details p {
        font-size: 1.25rem;
    }
}


/* ============================================
   11. RESPONSIVE - DESKTOP/TABLET LARGE (1024px and below - Hide Hero Image Animation)
   ============================================ */
@media (max-width: 1024px) {
    .hero-section {
        background:
            url('images/pan.jpg') center/cover no-repeat fixed;
        background-attachment: fixed;
    }

    .circle-2 {
        left: calc(50% + 90px) !important;
    }

    .circle-3 {
        top: calc(50% + 85px) !important;
    }
}

/* ============================================
   12. RESPONSIVE - TABLET (768px and below)
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 9rem;
    }

    .hero-subtitle {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .circle-1 {
        top: calc(50% - 125px);
    }

    .circle-2 {
        left: calc(50% + 90px) !important;
    }

    .circle-3 {
        top: calc(50% + 91px) !important;
    }

    .circle-4 {
        left: calc(50% - 125px);
    }

    /* Actualizar keyframes para tablet */
    @keyframes float-y-1 {

        0%,
        100% {
            top: calc(50% - 125px);
        }

        50% {
            top: calc(50% - 115px);
        }
    }

    @keyframes float-x-2 {

        0%,
        100% {
            left: calc(50% + 125px);
        }

        50% {
            left: calc(50% + 115px);
        }
    }

    @keyframes float-y-3 {

        0%,
        100% {
            top: calc(50% + 125px);
        }

        50% {
            top: calc(50% + 135px);
        }
    }

    @keyframes float-x-4 {

        0%,
        100% {
            left: calc(50% - 125px);
        }

        50% {
            left: calc(50% - 115px);
        }
    }

    .instagram-card {
        height: 520px;
    }

    .instagram-image-wrapper {
        height: 260px;
    }

    .instagram-content {
        height: 260px;
    }

    .product-content h3 {
        font-size: 1.6rem;
    }

    .product-image {
        height: 160px;
        font-size: 3.5rem;
    }

    .whatsapp-widget {
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-bubble {
        width: 55px;
        height: 55px;
    }

    .whatsapp-bubble i {
        font-size: 1.8rem;
    }

    /* Fuerza alineación de cards */
    .row.mt-5 {
        align-items: stretch;
    }

    .col-md-4 {
        display: flex;
        align-items: stretch;
    }

    .value-card {
        height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .value-card p {
        min-height: 181px !important;
    }

    .value-icon {
        flex-shrink: 0;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-card h4 {
        flex-shrink: 0;
        margin: 0.5rem 0;
        height: auto;
        line-height: 1.2;
    }

    .value-card p {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin: 0;
        overflow: hidden;
    }

    .contact-details p {
        font-size: 1.35rem !important;
    }
}

/* ============================================
   12. RESPONSIVE - MOBILE LARGE (576px and below)
   ============================================ */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .about-visual-composition {
        height: 350px;
    }

    .section-title {
        font-size: 2rem;
    }

    .instagram-card {
        height: 480px;
    }

    .instagram-image-wrapper {
        height: 240px;
    }

    .instagram-content {
        height: 240px;
    }

    .product-content h3 {
        font-size: 1.5rem;
    }

    .product-content {
        padding: 1.5rem 1rem;
    }

    .product-details {
        gap: 1rem;
    }
}

/* ============================================
   13. RESPONSIVE - MOBILE (480px y below - iPhone SE, iPhone 12 mini)
   ============================================ */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 20px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.3rem;
    }

    .bread-loaf {
        width: 190px;
        height: 190px;
        animation: breadFloat 6s ease-in-out infinite;
    }

    .ingredient-icon.rosemary {
        bottom: -25px;
    }

    .circle-1 {
        top: calc(50% - 95px);
        animation: float-y-1-mobile 4.2s ease-in-out infinite;
    }

    .circle-2 {
        left: calc(50% + 95px);
        animation: float-x-2-mobile 4.6s ease-in-out infinite;
    }

    .circle-3 {
        top: calc(50% + 95px);
        animation: float-y-3-mobile 5s ease-in-out infinite;
    }

    .circle-4 {
        left: calc(50% - 95px);
        animation: float-x-4-mobile 4.4s ease-in-out infinite;
    }

    @keyframes float-y-1-mobile {

        0%,
        100% {
            top: calc(50% - 95px);
        }

        50% {
            top: calc(50% - 87px);
        }
    }

    @keyframes float-x-2-mobile {

        0%,
        100% {
            left: calc(50% + 95px);
        }

        50% {
            left: calc(50% + 87px);
        }
    }

    @keyframes float-y-3-mobile {

        0%,
        100% {
            top: calc(50% + 95px);
        }

        50% {
            top: calc(50% + 103px);
        }
    }

    @keyframes float-x-4-mobile {

        0%,
        100% {
            left: calc(50% - 95px);
        }

        50% {
            left: calc(50% - 87px);
        }
    }

    .about-visual-composition {
        height: 300px;
    }

    .composition-center {
        width: 130px;
        height: 130px;
    }

    .bread-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.8rem;
    }

    .ingredient-circle {
        width: 84px !important;
        height: 84px !important;
        font-size: 0.68rem;
    }

    .ingredient-circle i {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-divider {
        width: 50px;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .instagram-card {
        height: 460px;
    }

    .instagram-image-wrapper {
        height: 230px;
    }

    .instagram-content {
        height: 230px;
        padding: 0.95rem;
    }

    .product-card:hover {
        transform: translateY(-6px);
    }

    .product-content h3 {
        font-size: 1.32rem;
    }

    .product-image {
        height: 145px;
        font-size: 3.1rem;
    }

    .product-content {
        padding: 1.2rem;
    }

    .product-badge {
        padding: 0.32rem 0.75rem;
        font-size: 0.72rem;
    }

    .product-details {
        gap: 1rem;
    }

    .product-weight,
    .product-time {
        font-size: 0.92rem;
    }

    .value-card {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }

    .value-card:hover {
        transform: translateY(-6px);
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .value-card h4 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.9rem;
        min-height: 50px;
    }

    .contact-item {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .contact-details h5 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .whatsapp-chat {
        width: 300px;
        max-height: 450px;
        bottom: 70px;
    }

    .whatsapp-widget {
        bottom: 85px;
        right: 12px;
    }

    .whatsapp-bubble {
        width: 52px;
        height: 52px;
    }

    .whatsapp-bubble i {
        font-size: 1.7rem;
    }

    .whatsapp-header {
        padding: 0.8rem;
    }

    .whatsapp-info h6 {
        font-size: 0.95rem;
    }

    .whatsapp-input {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

/* ============================================
   14. RESPONSIVE - MOBILE COMPACT (420px and below)
   ============================================ */
@media (max-width: 426px) {
    .hero-section {
        padding-top: 90px;
        min-height: 88vh;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.88rem;
    }

    .hero-buttons .btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .bread-loaf {
        width: 170px;
        height: 170px;
    }

    .bread-loaf i {
        font-size: 3rem;
    }

    .ingredient-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .circle-1 {
        top: calc(50% - 80px) !important;
        animation: float-y-1-compact 4.2s ease-in-out infinite;
    }

    .circle-2 {
        left: calc(38% + 80px) !important;
        animation: float-x-2-compact 4.6s ease-in-out infinite;
    }

    .circle-3 {
        top: calc(38% + 65px) !important;
        animation: float-y-3-compact 5s ease-in-out infinite;
    }

    .circle-4 {
        left: calc(50% - 80px);
        animation: float-x-4-compact 4.4s ease-in-out infinite;
    }

    @keyframes float-y-1-compact {

        0%,
        100% {
            top: calc(50% - 80px);
        }

        50% {
            top: calc(50% - 74px);
        }
    }

    @keyframes float-x-2-compact {

        0%,
        100% {
            left: calc(50% + 80px);
        }

        50% {
            left: calc(50% + 74px);
        }
    }

    @keyframes float-y-3-compact {

        0%,
        100% {
            top: calc(50% + 80px);
        }

        50% {
            top: calc(50% + 74px);
        }
    }

    @keyframes float-x-4-compact {

        0%,
        100% {
            left: calc(50% - 80px);
        }

        50% {
            left: calc(50% - 74px);
        }
    }

    .about-visual-composition {
        height: 270px;
    }

    .composition-center {
        width: 115px;
        height: 115px;
    }

    .bread-icon-large {
        width: 85px;
        height: 85px;
        font-size: 2.3rem;
    }

    .ingredient-circle {
        width: 54px;
        height: 54px;
        font-size: 0.62rem;
    }

    .ingredient-circle i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-divider {
        width: 45px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    .stat-icon i {
        font-size: 1.8rem;
    }

    .instagram-card {
        height: 440px;
    }

    .instagram-image-wrapper {
        height: 210px;
    }

    .instagram-content {
        height: 230px;
        padding: 0.85rem;
    }

    .instagram-content h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .instagram-content p {
        font-size: 0.85rem;
    }

    .product-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
    }

    .product-image {
        height: 130px;
        font-size: 2.8rem;
    }

    .product-content {
        padding: 1rem;
    }

    .product-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
        top: 12px;
        left: 12px;
    }

    .product-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .product-details {
        gap: 0.8rem;
        margin-top: auto;
        font-size: 0.88rem;
    }

    .info-box {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .info-box i {
        font-size: 1.1rem;
    }

    .info-box p {
        font-size: 0.9rem;
    }

    .value-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1rem;
        min-height: 280px;
    }

    .value-card:hover {
        transform: translateY(-4px);
    }

    .value-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
        font-size: 1.6rem;
    }

    .value-card h4 {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }

    .value-card p {
        font-size: 0.85rem;
        min-height: 50px;
    }

    .about-features {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .feature-item {
        gap: 0.8rem;
        font-size: 0.92rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
        margin-bottom: 1.3rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-details h5 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-map-wrapper h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .whatsapp-chat {
        width: 280px;
        max-height: 420px;
        bottom: 65px;
        right: 5px;
    }

    .whatsapp-widget {
        bottom: 80px;
        right: 10px;
    }

    .whatsapp-bubble {
        width: 50px;
        height: 50px;
    }

    .whatsapp-bubble i {
        font-size: 1.6rem;
    }

    .whatsapp-header {
        padding: 0.7rem;
    }

    .whatsapp-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }

    .whatsapp-info h6 {
        font-size: 0.9rem;
    }

    .whatsapp-info span {
        font-size: 0.7rem;
    }

    .whatsapp-body {
        padding: 0.8rem;
    }

    .whatsapp-message p {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }

    .whatsapp-footer {
        padding: 0.8rem;
        gap: 0.4rem;
    }

    .whatsapp-input {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        border-radius: 18px;
    }

    .whatsapp-send-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ============================================
   15. RESPONSIVE - SMALL MOBILE (375px and below - iPhone SE, iPhone 8)
   ============================================ */
@media (max-width: 376px) {
    .hero-section {
        padding-top: 85px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .hero-buttons .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-image-container {
        height: 250px;
    }

    .bread-loaf {
        width: 160px;
        height: 160px;
    }

    .bread-loaf i {
        font-size: 2.8rem;
    }

    .ripple-effect {
        width: 180px;
        height: 180px;
        border-width: 1.5px;
    }

    .ingredient-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        animation: float 2.8s ease-in-out infinite;
    }

    .ingredient-icon.butter {
        top: -30px;
    }

    .ingredient-icon.jar {
        right: -30px;
    }

    .ingredient-icon.rosemary {
        bottom: -20px;
    }

    .circle-1 {
        top: calc(50% - 70px);
    }

    .circle-2 {
        left: calc(38% + 70px) !important;
    }

    .circle-3 {
        top: calc(33% + 70px) !important;
    }

    .circle-4 {
        left: calc(50% - 70px);
    }

    .about-visual-composition {
        height: 250px;
    }

    .composition-center {
        width: 105px;
        height: 105px;
    }

    .bread-icon-large {
        width: 78px;
        height: 78px;
        font-size: 2.1rem;
    }

    .ingredient-circle {
        width: 50px;
        height: 50px;
        font-size: 0.58rem;
    }

    .ingredient-circle i {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-divider {
        width: 40px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 1.08rem;
    }

    .stat-number {
        font-size: 1.85rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1.5rem 0.8rem;
    }

    .instagram-card {
        height: 420px;
    }

    .instagram-image-wrapper {
        height: 200px;
    }

    .instagram-content {
        height: 220px;
        padding: 0.8rem;
    }

    .instagram-content h5 {
        font-size: 0.95rem;
    }

    .instagram-content p {
        font-size: 0.8rem;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-content h3 {
        font-size: 1.18rem;
        margin-bottom: 0.6rem;
    }

    .product-image {
        height: 120px;
        font-size: 2.5rem;
    }

    .product-content {
        padding: 0.9rem;
    }

    .product-badge {
        padding: 0.25rem 0.55rem;
        font-size: 0.6rem;
    }

    .product-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .product-details {
        gap: 0.6rem;
        font-size: 0.82rem;
    }

    .product-weight i,
    .product-time i {
        font-size: 0.85rem;
    }

    .info-box {
        padding: 1rem;
        gap: 0.7rem;
    }

    .info-box i {
        font-size: 1rem;
    }

    .info-box p {
        font-size: 0.82rem;
    }

    .value-card {
        padding: 1rem;
        min-height: 260px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
        font-size: 1.5rem;
    }

    .value-card h4 {
        font-size: 1.08rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.8rem;
        min-height: 45px;
    }

    .about-features {
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .feature-item {
        gap: 0.7rem;
        font-size: 0.88rem;
    }

    .feature-item i {
        font-size: 0.95rem;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.3rem;
    }

    .contact-item {
        gap: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .contact-details h5 {
        font-size: 0.9rem;
    }

    .contact-details p {
        font-size: 0.8rem;
    }

    .whatsapp-chat {
        width: 265px;
        max-height: 400px;
        bottom: 60px;
        right: 8px;
        border-radius: 12px;
    }

    .whatsapp-bubble {
        width: 48px;
        height: 48px;
    }

    .whatsapp-bubble i {
        font-size: 1.5rem;
    }

    .whatsapp-header {
        padding: 0.6rem;
        border-radius: 12px 12px 0 0;
    }

    .whatsapp-avatar {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }

    .whatsapp-info h6 {
        font-size: 0.85rem;
    }

    .whatsapp-info span {
        font-size: 0.65rem;
    }

    .whatsapp-close {
        font-size: 1rem;
    }

    .whatsapp-body {
        padding: 0.7rem;
    }

    .whatsapp-message p {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .whatsapp-time {
        font-size: 0.7rem;
    }

    .whatsapp-footer {
        padding: 0.7rem;
        gap: 0.3rem;
        border-radius: 0 0 12px 12px;
    }

    .whatsapp-input {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 16px;
    }

    .whatsapp-send-btn {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
}

/* ============================================
   16. RESPONSIVE - EXTRA SMALL (320px and below)
   ============================================ */
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 1.1rem;
        gap: 0.3rem;
    }

    .navbar-brand i {
        font-size: 1.2rem;
    }

    .hero-section {
        padding-top: 80px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .hero-buttons .btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.7rem;
        width: 100%;
    }

    .hero-image-container {
        height: 230px;
    }

    .bread-loaf {
        width: 150px;
        height: 150px;
        animation: breadFloat 5.5s ease-in-out infinite;
    }

    .bread-loaf i {
        font-size: 2.6rem;
    }

    .ripple-effect {
        width: 165px;
        height: 165px;
        border-width: 1px;
        animation: ripple 1.8s ease-out infinite;
    }

    .ingredient-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .circle-1 {
        width: 54px;
        height: 54px;
        top: calc(50% - 65px);
    }

    .circle-2 {
        width: 54px;
        height: 54px;
        left: calc(38% + 65px) !important;
    }

    .circle-3 {
        width: 54px;
        height: 54px;
        top: calc(33% + 65px) !important;
    }

    .circle-4 {
        width: 54px;
        height: 54px;
        left: calc(50% - 65px);
    }

    .ingredient-circle i {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
    }

    .about-visual-composition {
        height: 230px;
    }

    .composition-center {
        width: 98px;
        height: 98px;
    }

    .bread-icon-large {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .section-divider {
        width: 35px;
        height: 2.5px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .instagram-card {
        height: 400px;
    }

    .instagram-image-wrapper {
        height: 190px;
    }

    .instagram-content {
        height: 210px;
        padding: 0.7rem;
    }

    .instagram-content h5 {
        font-size: 0.9rem;
    }

    .instagram-content p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .product-card {
        border-radius: 5px;
    }

    .product-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .product-image {
        height: 110px;
        font-size: 2.2rem;
    }

    .product-content {
        padding: 0.8rem;
    }

    .product-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.55rem;
        top: 10px;
        left: 10px;
    }

    .product-content p {
        font-size: 0.75rem;
        margin-bottom: 0.7rem;
    }

    .product-details {
        gap: 0.5rem;
        font-size: 0.78rem;
    }

    .info-box {
        padding: 0.9rem;
        gap: 0.6rem;
    }

    .info-box i {
        font-size: 0.95rem;
    }

    .info-box p {
        font-size: 0.78rem;
    }

    .value-card {
        padding: 0.9rem;
        margin-bottom: 0.8rem;
        min-height: 240px;
    }

    .value-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.7rem;
        font-size: 1.4rem;
    }

    .value-card h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .value-card p {
        font-size: 0.75rem;
        line-height: 1.35;
        min-height: 40px;
    }

    .footer {
        padding: 2rem 0 0.8rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .whatsapp-chat {
        width: 250px;
        max-height: 380px;
        bottom: 55px;
        right: 6px;
    }

    .whatsapp-bubble {
        width: 46px;
        height: 46px;
        box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-bubble i {
        font-size: 1.4rem;
    }

    .whatsapp-header {
        padding: 0.55rem;
    }

    .whatsapp-avatar {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }

    .whatsapp-info h6 {
        font-size: 0.8rem;
    }

    .whatsapp-close {
        font-size: 0.95rem;
    }

    .whatsapp-message p {
        padding: 0.55rem 0.75rem;
        font-size: 0.75rem;
    }

    .whatsapp-footer {
        padding: 0.6rem;
    }

    .whatsapp-input {
        padding: 0.35rem 0.55rem;
        font-size: 0.7rem;
    }

    .whatsapp-send-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* ============================================
   15. RESPONSIVE - VALUE CARDS & ABOUT
   ============================================ */
.value-card {
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--wheat-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 60px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}