

:root {

    --primary-dark: #1a1b3d;
    --primary-blue: #2d2f5f;
    --secondary-purple: #3b2d5f;
    --accent-orange: #ff6b35;
    --accent-orange-light: #ff8c42;
    --text-light: #ffffff;
    --text-muted: #a8a9c4;
    --background-dark: #0f1029;
    --background-card: #1e1f42;
    --gradient-primary: linear-gradient(135deg, #1a1b3d 0%, #2d2f5f 50%, #3b2d5f 100%);
    --gradient-accent: linear-gradient(45deg, #ff6b35 0%, #ff8c42 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-primary);
    background-attachment: fixed;
    overflow-x: hidden;
}



h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}



.btn {
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.btn-warning {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--box-shadow);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
    color: white;
}

.btn-warning::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-warning:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid var(--text-muted);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}



.navbar {
    background: rgba(26, 27, 61, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(26, 27, 61, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-light) !important;
}

.brand-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(360deg);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-light) !important;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--accent-orange) !important;
}



.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/411795878.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #6A78FF, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-image {
  display: inline-block;
  border-radius: 50%;
  padding: 15px; 
  background: linear-gradient(to bottom, #FF7200, #6A78FF);
}

.hero-image img {
  display: block;
  border-radius: 50%;
}






.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section.section-services {
  position: relative;
  z-index: 1; 
}

.section.section-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/377471760.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: -1;
}



.card-custom {
    background: var(--background-card);
    border: none;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-custom:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card-custom:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}


.form-control {
    background: var(--background-card);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-light);
    padding: 15px 20px;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--background-card);
    border-color: var(--accent-orange);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}



.footer {
    background: var(--background-dark);
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-description {
    color: var(--text-muted);
    margin: 1.5rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--accent-orange);
    margin-right: 1rem;
    width: 20px;
}

.footer-title {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 10px;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-input-group .form-control {
    border-radius: 10px 0 0 10px;
}

.newsletter-input-group .btn {
    border-radius: 0 10px 10px 0;
    padding: 15px 20px;
}

.newsletter-note {
    color: var(--text-muted);
}

.newsletter-note a {
    color: var(--accent-orange);
    text-decoration: none;
}

.footer-divider {
    border-color: var(--primary-blue);
    margin: 3rem 0 2rem;
}

.copyright, .made-with {
    color: var(--text-muted);
    margin: 0;
}

.made-with i {
    color: var(--accent-orange);
    animation: heartbeat 2s ease-in-out infinite;
}



.cookies-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--background-card);
    z-index: 9999;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    transform: translateY(100%);
}

.cookies-popup.show {
    bottom: 0;
    transform: translateY(0);
}

.cookies-popup.hide {
    bottom: -100%;
    transform: translateY(100%);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookies-text h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cookies-text p {
    color: var(--text-muted);
    margin: 0;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}



.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.back-to-top.show {
    display: flex;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}



@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .card-custom {
        margin-bottom: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group .form-control,
    .newsletter-input-group .btn {
        border-radius: 10px;
    }
    
    .newsletter-input-group .btn {
        margin-top: 1rem;
    }
    
    .cookies-buttons {
        justify-content: center;
    }
}

