:root {
    --primary: #FFD100;
    /* Imperial-like Yellow */
    --primary-hover: #e6bc00;
    --secondary: #1a1a1a;
    /* Almost Black */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --accent-blue: #007bff;
    --success: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
}

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

/* Add to Cart Button Specifics */
.btn-add {
    width: 100%;
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px;
    margin-top: 10px;
}

.btn-add:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: #ccc;
    margin-left: 20px;
    font-size: 0.8rem;
}

.top-links a:hover {
    color: var(--primary);
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo i {
    font-size: 3.8rem;
    color: var(--primary);
}

.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.logo-text span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

/* Search Bar */
.search-container {
    flex: 1;
    display: flex;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    outline: none;
    padding-right: 50px;
    transition: var(--transition);
}

.search-container input:focus {
    border-color: var(--primary);
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--secondary);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 25px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.action-item .icon-wrapper {
    position: relative;
}

.action-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.action-item:hover {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav */
.main-nav {
    background-color: var(--secondary);
    color: var(--white);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    padding: 15px 0;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-list a.highlight {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%),
        url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.badge-hero {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: inline-block;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    border: 8px solid var(--white);
    max-width: 450px;
    margin: 0 auto;
}

/* Categories */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 2rem;
    color: var(--secondary);
    position: relative;
    padding-left: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 6px;
    background-color: var(--primary);
    border-radius: 3px;
}

.view-all {
    color: var(--text-light);
    font-weight: 500;
}

.view-all:hover {
    color: var(--primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.cat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.cat-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.cat-card:hover i {
    color: var(--primary);
}

.cat-card span {
    display: block;
    font-weight: 600;
}

/* Products */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.product-image {
    height: 250px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    position: relative;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    animation: fadeEffect 0.5s;
}

.carousel-slide.active {
    display: flex;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
    z-index: 10;
    opacity: 0;
}

.product-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 12px;
    border-radius: 10px;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;



    margin-bottom: 10px;
    color: var(--secondary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

/* Quantity Controls */
.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    height: 42px;
}

.qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 100%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: #eee;
    color: var(--primary);
}

.qty-input {
    width: 40px;
    height: 100%;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-weight: 600;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add {
    flex: 1;
    margin-top: 0;
    /* Reset previous margin */
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Cart Specific Updates */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.mini-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.mini-qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cart-qty-display {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.item-total {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 5px;
    display: block;
    /* Ensure it sits on new line if needed */
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.main-footer {
    background-color: var(--secondary);
    color: #ccc;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo .logo-image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .header-content {
        flex-wrap: wrap;
    }

    .search-container {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile Menu Logic */
    .main-nav .container {
        position: relative;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--secondary);
        padding-top: 10px;
    }

    .nav-list.show {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-list a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }
}

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

    .hero h2 {
        font-size: 2.2rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bump Animation for Cart */
@keyframes bump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.bump {
    animation: bump 300ms ease-out;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: var(--radius);
    color: var(--text-light);
}

/* Cart Drawer Styles */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    /* Above header */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hidden initially */
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* Eloquent ease */
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary);
    color: var(--white);
}

.cart-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* Empty State */
.empty-cart-msg {
    text-align: center;
    padding-top: 50px;
    color: var(--text-light);
}

.empty-cart-msg i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #eee;
}

.empty-cart-msg p {
    margin-bottom: 20px;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    animation: fadeIn 0.3s ease;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid #eee;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.item-price {
    font-weight: bold;
    color: var(--primary-hover);
    /* Darker yellow for readability */
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 5px;
    text-decoration: underline;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECCIÓN DE ÁRIDOS
======================================== */

.aridos-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.aridos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary);
}

.aridos-header {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

.aridos-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.aridos-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Steps Box */
.process-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 5px solid var(--primary);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
    border-right: 1px solid #eee;
    text-align: center;
    min-width: 150px;
}

.process-step:last-child {
    border: none;
}

.process-step i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.process-step:hover i {
    transform: scale(1.1);
}

.process-step h4 {
    margin-bottom: 5px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Áridos Products Grid */
.aridos-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.aridos-products-grid .product-card {
    border: 2px solid transparent;
    transition: var(--transition);
}

.aridos-products-grid .product-card:hover {
    border-color: var(--primary);
}

/* Bulk Order Banner */
.bulk-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #e6bc00 100%);
    color: var(--secondary);
    padding: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.bulk-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.bulk-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.bulk-banner .btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1rem;
}

.bulk-banner .btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.bulk-banner .btn i {
    margin-left: 8px;
}

/* Áridos Section Header */
.aridos-section .section-header h3 {
    color: var(--white);
}

.aridos-section .section-header h3::before {
    background-color: var(--primary);
}

/* Responsive Áridos */
@media (max-width: 768px) {
    .aridos-header h2 {
        font-size: 2rem;
    }

    .process-box {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
        width: 100%;
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .bulk-banner {
        flex-direction: column;
        text-align: center;
    }
}