/* General Styles */
:root {
    --primary-color: #2daab0;
    --secondary-color: #6ccad3;
    --dark-color: #0d4858;
    --light-color: #f9fafb;
    --accent-color: #6ccad3;
    --success-color: #2daab0;
    --warning-color: #a31d15;
    --error-color: #a31d15;
    --text-dark: #020103;
    --background-dark: #0d4858;
    --bs-primary: #2daab0;
    --bs-primary-rgb: 45, 170, 176;
}
.btn-outline-primary {
    --bs-btn-color: #2daab0;
    --bs-btn-border-color: #2daab0;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2daab0;
    --bs-btn-hover-border-color: #2daab0;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2daab0;
    --bs-btn-active-border-color: #2daab0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #2daab0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #2daab0;
    --bs-gradient: none;
}
.dropdown-menu {
    --bs-dropdown-link-active-color: #ffffff;
    --bs-dropdown-link-active-bg: #b11f17;
    --bs-dropdown-link-hover-color: #ffffff;
    --bs-dropdown-link-hover-bg: #b11f17;
}
body {
    font-family: 'Inter', 'Arial', sans-serif;
    padding-top: 76px;
    color: var(--text-dark);
    line-height: 1.6;
}
.titulop {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.025em;
}   
.titulopr {
    color: #b11f17;
    font-weight: 600;
    letter-spacing: 0.025em;
}   
/* Hero Sections */
.carousel-item {
    height: 70vh;
    min-height: 450px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-caption {
    bottom: 25%;
    z-index: 2;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 170, 176, 0.8), rgba(13, 72, 88, 0.75));
    z-index: 1;
}

.carousel-caption h1,
.carousel-caption h2.display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 3;
}

.carousel-indicators {
    z-index: 3;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
        min-height: 350px;
    }
    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
}
.nav-link {
    color: var(--text-dark);
}
.service-hero {
    background: linear-gradient(135deg, rgba(45, 170, 176, 0.8), rgba(13, 72, 88, 0.75));
    background-blend-mode: multiply;
    padding: 100px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.service-hero .container {
    z-index: 2;
    position: relative;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 170, 176, 0.8), rgba(13, 72, 88, 0.75));
    z-index: 1;
}
/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card:hover::before {
    left: 100%;
}

/* Circle Numbers */
.circle-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    letter-spacing: 0.025em;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--dark-color);
}

/* Icons */
.fas {
    color: var(--primary-color);
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Lists */
.list-unstyled li {
    margin-bottom: 0.5rem;
}
#servicios {
    background-color: rgba(196, 225, 228, 0.30);

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section, .service-hero {
        padding: 100px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .btn-primary, .feature-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 170, 176, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color);
}

.btn-primary:hover::before {
    width: 300%;
    height: 300%;
}

/* Dropdown Menus */
.dropdown-item.active {
    background-color: var(--primary-color);
}

/* Images */
.img-fluid {
    border-radius: 8px;
}

/* Service Icons */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}