:root {
    --primary-color: #107402;
    --bg-color: #fbf4e0;
    --text-color: #2c3e50;
    --text-light: #5d6d7e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	    overflow-x: hidden;
}

.header-content {
    flex-wrap: wrap !important;
}
.phone-section {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    color: white;
    margin: 10px 0;
}

.phone-number {
    font-size: 32px;
    display: block;
    margin-top: 5px;
}

.attention-text {
    font-size: 16px;
    display: block;
}

.header-top {
    position: relative;
    background: #ffffff;
    color: #333;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(16, 116, 2, 0.3);
    min-height: 80px;
    overflow: hidden;
}

.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 50% 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-section img {
    max-width: 100%;
    height: auto;
}

.insurance-section img {
    max-width: 75%;
    height: auto;
}

.white-side {
    color: #333;
}

.green-side {
    color: white;
}

.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand, .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--bg-color) !important;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.video-section {
    padding: 60px 0;
}

.video-container {
    position: relative;
    background-color: #fbf4e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    color: white;
    font-size: 48px;
    text-align: center;
}

.services-section {
    padding: 80px 0;
}

.service-item {
    text-align: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(16, 116, 2, 0.3);
    transition: all 0.3s ease;
}

.service-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16, 116, 2, 0.4);
}

.service-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.additional-sections {
    background-color: white;
    padding: 60px 0;
    border-top: 3px solid var(--primary-color);
}

.section-box {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 5px 5px;
    margin-bottom: 5px;
    text-align: center;
    min-height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 116, 2, 0.2);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: transparent !important;
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    text-align: center;
    padding: 0 !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none !important;
    box-shadow: none !important;
}

.slider-content.active {
    opacity: 1;
    visibility: visible;
}

.slider-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.indicator-container,
.indicator-dot {
    display: none !important;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0 20px;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    border: none;
    margin: 0;
}

.icono-link .icono-img {
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}

.icono-link:hover .icono-img {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.58);
}
