
:root {
    --goldpel-blue: #0066cc;
    --goldpel-green: #00a651;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}
.bg-goldpel-blue {
    background-color: var(--goldpel-blue);
}
.bg-goldpel-green {
    background-color: var(--goldpel-green);
}
.text-goldpel-blue {
    color: var(--goldpel-blue);
}
.text-goldpel-green {
    color: var(--goldpel-green);
}
.border-goldpel-blue {
    border-color: var(--goldpel-blue);
}
.border-goldpel-green {
    border-color: var(--goldpel-green);
}
.btn-primary {
    background: linear-gradient(135deg, var(--goldpel-blue), var(--goldpel-green));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: bold;
    text-align: center;
}
.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--goldpel-blue), var(--goldpel-green));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.product-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--goldpel-green);
}
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
.feature-box {
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--goldpel-green);
    box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.2);
}
