:root {
    --primary-color: #6d000b;
    --secondary-color: #f8b500;
    --accent-color: #34c759;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --icon-color:#670012;
}
.color-icon{
    color: var(--icon-color);
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 35%)), url(../img/banner-landing.webp?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #6d000b21;
    right: 0;
    width: 50%;
    margin: 0 auto;
}

.step-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 20px auto;
}

.highlight-box {
    background-color: #f0f8ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-box {
    background-color: #495057;/*var(--primary-color);*/
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.cta-button {
    background-color: var(--secondary-color);
    color: #333;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e6a900;
    transform: translateY(-3px);
    color: #333;
}

.footer {
    background-color:#020000;
    color: #ecf0f1;
    padding: 50px 0 50px;
}

.island-img {
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.process-img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-btn {
    background-color: #00c74a;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    color: white;
    transform: translateY(-3px);
}

.note-box {
    background-color: #fff9e6;
    border: 1px solid #ffdd57;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}