/* Custom CSS for Nacional Gás Campaign */

:root {
    --primary-color: #930d00;
    --primary-rgb: 204, 6, 2;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

/* Primary color utilities */
.bg-primary {
    background-color: var(--primary-color) !important;
}


.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Primary subtle background */
.bg-primary-subtle {
    background-color: rgba(var(--primary-rgb), 0.1) !important;
}

/* White opacity utilities */
.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Button hover effects */
.btn-outline-light:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
    border-color: white !important;
}

/* Accordion customizations */
.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button::after {
    display: none !important;
}

/* Icon sizing */
[data-lucide] {
    width: 24px;
    height: 24px;
}

/* Responsive text sizing */
@media (max-width: 991.98px) {
    .display-2 {
        font-size: 3rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .h5 {
        font-size: 1.125rem;
    }
}

.section-title {
    font-weight: bold;
    color: #930d00;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.form-section {
    margin-bottom: 2rem;
}
.btn-confirmar {
    background-color: #930d00;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #930d00;
}
.btn-confirmar:hover {
    background-color: #930d00;
    color: white;
}

/* Carousel customizations */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    background-size: 50%;
    padding: 1rem;
}

.carousel-indicators {
    margin-bottom: 0.75rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    opacity: 1;
    transform: scale(1.15);
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
        opacity: 0.6;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }
}