:root {
    --primary-color: #C0251F;
    --accent-color: #C0251F;
    --bs-body-font-family: 'Roboto'
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.p {
    font-family: 'Raleway'

}

body {
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    color: #000000;
}


.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.btn-accent {
    background-color: #C0251F;
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #000000;
    color: #ffffff;
}

.btn.btn-accent:hover {
  background-color: #000000a4 !important;
  color: #fff !important;
}

.btn.btn-secondary:hover {
    background-color: #000000a4  !important;
}

.fixed-icons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
}

.fixed-icons .whatsapp {
    background-color: #25D366;
    color: white;
    padding: 10px 16px;
    font-size: 20px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}

.fixed-icons .whatsapp:hover {
    background-color: #1ebc59;
    color: white;
    text-decoration: none;
}



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

.navbar-brand,
.nav-link,
.navbar-toggler-icon {
    color: #000000 !important;
}

.hero {
    background: linear-gradient(rgba(212, 57, 18, 0.527), rgba(0, 51, 102, 0.7)), url(img/pexels-gustavo-fring-6817037\ \(1\).jpg) center center/cover no-repeat;
    color: white;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.btn-accent {
    background-color: #C0251F !important;
    color: #ffffff !important;
    border: none;
}

.section-title {
    margin-bottom: 2rem;
    text-align: center;
}

section {
    padding: 4rem 0;
}

.icon-box {
    background-color: #f1efef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
}

.icon-box:hover {
    background: #cacaca;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.testimonial {
    background: #fff;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
}

footer a {
    color: #fff;
    text-decoration: underline;
}