:root {
    --primary-color: #FF69B4;
    --primary-light: #FFB6C1;
    --secondary-color: #8A2BE2;
    --accent-color: #20B2AA;
    --lavender: #E6E6FA;
    --mint: #B0E0E6;
    --peach: #FFDAB9;
    --rose: #FFE4E1;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF69B4 0%, #8A2BE2 100%);
    --gradient-light: linear-gradient(135deg, #FFE4E1 0%, #E6E6FA 100%);
    --shadow-soft: 0 5px 15px rgba(255, 105, 180, 0.1);
    --shadow-medium: 0 10px 30px rgba(255, 105, 180, 0.15);
    --border-radius: 20px;
    --border-radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F8FF 100%);
}

.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-primary);
    border: none;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.08);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 24px;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: rotate(360deg) scale(1.1);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.offcanvas {
    background: var(--gradient-light);
    backdrop-filter: blur(20px);
}

.hero-section {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 20px 0;
}

.hero-badge {
    background: var(--gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin: 25px 0;
    line-height: 1.7;
}

.hero-buttons {
    margin: 30px 0;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.hero-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    animation: floatReverse 4s ease-in-out infinite;
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: -2s;
}

.card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: -1s;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E") center bottom/cover no-repeat;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 105, 180, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0); }
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-primary);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.service-features i {
    margin-right: 10px;
    font-size: 16px;
}

.advantages-section {
    background: var(--gradient-light);
    position: relative;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.advantage-icon i {
    font-size: 24px;
    color: white;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(10deg);
}

.advantage-content h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.advantage-content p {
    color: var(--text-light);
    margin: 0;
}

.advantages-visual {
    position: relative;
    text-align: center;
}

.advantages-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.advantage-badge {
    position: absolute;
    background: white;
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.badge-1 {
    top: 20px;
    left: 20px;
    animation-delay: -1s;
}

.badge-2 {
    bottom: 20px;
    right: 20px;
    animation-delay: -0.5s;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.process-step:hover .process-icon i {
    color: white;
}

.process-step h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

.contact-section {
    background: var(--gradient-light);
    position: relative;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    border-radius: var(--border-radius);
}

.contact-info {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-info h4 {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cta-section {
    background: white;
    position: relative;
}

.contact-form-container {
    background: var(--gradient-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 105, 180, 0.1);
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: white;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.15);
}

.contact-form .form-check-input {
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 4px;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-section {
    background: var(--text-dark);
    color: white;
    padding: 130px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E") center top/cover no-repeat;
    transform: rotate(180deg);
}

.footer-brand img {
    transition: transform 0.3s ease;
}

.footer-brand:hover img {
    transform: rotate(360deg) scale(1.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item-footer i {
    color: var(--primary-light);
    font-size: 16px;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item-footer i {
    color: var(--primary-light);
    font-size: 16px;
    width: 20px;
}

.footer-cta .btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta .btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: transparent;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 50px 0 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
}

.cookie-content i {
    color: var(--primary-light);
    font-size: 18px;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 8px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .hero-stats {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .advantage-item {
        text-align: center;
        flex-direction: column;
    }
    
    .advantage-icon {
        margin: 0 auto 15px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 20px;
    }
    
    .cookie-banner .col-lg-9,
    .cookie-banner .col-lg-3 {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-banner .col-lg-3 {
        margin-bottom: 0;
    }
}