:root {
    --primary-color: red;
    --secondary-color: #20B2AA;
    --dark-blue: #2C3E50;
    --light-gray: #F5F7FA;
    --medium-gray: #95A5A6;
    --white: #FFFFFF;
}

body {
    background-color: var(--white);
    color: var(--dark-blue);
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: var(--dark-blue) !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a9690;
    border-color: #1a9690;
    transform: translateY(-2px);
}

.service-card {
    background-color: var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.hero-section {
    background: linear-gradient(to right, var(--white), var(--light-gray));
}

footer {
    background-color: var(--dark-blue) !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

.contact-info i {
    color: var(--secondary-color);
}

form input:focus,
form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}


/* Custom animations */
[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .contact-info {
        margin-top: 2rem;
    }
}

.industrial-uses {
    background-color: var(--light-gray);
}

.use-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.use-item:hover {
    transform: translateX(10px);
}

.use-item i {
    color: var(--primary-color);
    min-width: 40px;
    margin-top: 0.5rem;
}

.use-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.use-content p {
    margin-bottom: 0;
    color: var(--medium-gray);
}



.hero-content {
    padding: 2rem;
}

.feature-item {
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.fw-500 {
    font-weight: 500;
}

.btn-success {
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2) !important;
}

.alert-light {
    background-color: rgba(255, 255, 255, 0.9);
}
/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px !important;
    width: auto;
}


.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
}

/* Hero Section Styles */
.hero-section {
    padding-top: 90px; /* Adjust based on navbar height */
    min-height: 100vh;
    background-color: #fff;
}

.hero-content {
    padding: 3rem 0;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 76px;
    }
    
    .hero-content {
        padding: 2rem 0;
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.product-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-features {
    margin-top: 1rem;
}

.badge {
    margin-right: 0.5rem;
    padding: 0.5rem 0.8rem;
}

.alert-info {
    background-color: #e3f2fd;
    border-color: #90caf9;
    color: #0d47a1;
}
.bundle-benefits {
    background-color: #f8f9fa;
}

.benefit-item {
    display: flex;
    align-items: start;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item i {
    color: #28a745;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.benefit-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    margin-bottom: 0;
}
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #4CAF50;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, #45a049 0%, #388E3C 100%);
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-content {
    text-align: center;
}

.feature-content h5 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}
.product-card img {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    border: 3px dotted #4CAF50;
    padding: 10px;
    transition: all 0.3s ease;
}

.product-card:hover img {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
    border-style: solid;
    transform: scale(1.05);
}

/* Alternative style option */
.product-card.style-alt img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 2px dashed #4CAF50;
    padding: 8px;
}

.product-card.style-alt:hover img {
    border-radius: 50%;
    border-style: dotted;
}
.social-links .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    z-index: 1;
}

.social-links .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-links .btn:hover::before {
    width: 100%;
}

/* WhatsApp button specific styles */
.social-links .btn-success {
    background: #25D366;
}

.social-links .btn-success:hover {
    color: #25D366;
    background: transparent;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Email button specific styles */
.social-links .btn-primary {
    background: #0d6efd;
}

.social-links .btn-primary:hover {
    color: #0d6efd;
    background: transparent;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* loader - Se puede usar wn cualquier lado :D */
.progress-circle {
    width: 50px;
    height: 50px;
    position: relative;
}
.circle-loader {
    border: 4px solid rgba(0,123,255,0.2);
    border-left-color: #20B2AA;
    animation: rotate 1s infinite linear;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}


/* Join chat boton */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    width: 300px;
}

.whatsapp-modal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.whatsapp-modal-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(0) invert(1);
}

.whatsapp-header-info h4 {
    margin: 0;
    font-size: 16px;
}

.close-modal {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.whatsapp-modal-body {
    padding: 15px;
}

.message-box {
    background: #DCF8C6;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.input-box {
    display: flex;
    gap: 10px;
}

.input-box textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    resize: none;
    height: 40px;
}

.input-box button {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-box button:hover {
    background: #128C7E;
}
