/* Primary Button Styles */
.gac-primary-btn {
    background-color: #2D2D2D;
    width: 194px;
    display: block;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gac-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gac-primary-btn {
        width: 160px;
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Mobile Small Styles */
@media (max-width: 480px) {
    .gac-primary-btn {
        width: 140px;
        font-size: 13px;
    }
}

/* Header bar gris oscuro - Reutilizable */
.gac-header-bar {
    background-color: #353535;
    width: 100%;
    padding: 20px 0;
}

.gac-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gac-cotizador-title {
    font-size: 36px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.gac-cotizador-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive para Header */
@media (max-width: 768px) {
    .gac-cotizador-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gac-cotizador-title {
        font-size: 24px;
    }
}