* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --main-color: #A80D36;
    --dark-color: #4A4A4A; /* Neutral dark */
}

body {
    line-height: 1.6;
}

/* Navigation */
nav {
    background: #fff;
    color: var(--dark-color);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: .5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 75%;
    margin: 0 auto;
}

.nav-container .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-container .logo img {
    width: 200px;
    height: 100%;
    object-fit: contain;
}

.nav-container .nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-container .nav-links .whatsapp,
.nav-container .nav-links .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: var(--main-color);
    box-shadow: 0 2px 8px rgba(59, 125, 221, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-container .nav-links .whatsapp i,
.nav-container .nav-links .phone i {
    font-size: 1.2rem;
    color: #fff !important;
}

.nav-container .nav-links .whatsapp:hover,
.nav-container .nav-links .phone:hover {
    box-shadow: 0 5px 15px rgba(61, 125, 221, 0.15);
    transform: translateY(-2px);
}

/* Showcase Section */
.showcase {
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.showcase .showcase-container {
    max-width: 75%;
    margin: 0 auto;
    position: relative;
}

.showcase .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
    background: #fff;
}

.showcase .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.showcase .slide {
    min-width: 100%;
    position: relative;
}

.showcase .slide img {
    width: 100%;
    height: 100%;
}

.showcase .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.showcase .slide:hover .slide-content {
    transform: translateY(0);
}

.showcase .slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.showcase .slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.showcase .slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.showcase .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase .slider-dot.active {
    background: var(--dark-color);
    transform: scale(1.2);
}

.showcase .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: .5;
}

.showcase .slider-arrow:hover {
    background: var(--main-color);
    opacity: 1;
}

.showcase .slider-arrow i {
    color: white;
    font-size: 1.5rem;
}

.showcase .slider-prev {
    left: 20px;
}

.showcase .slider-next {
    right: 20px;
}

/* Modules Section */
.modules {
    padding: 1.5rem 0 5rem;
}

.modules .modules-container {
    max-width: 75%;
    margin: 0 auto;
}

.modules .modules-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modules .modules-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.modules .modules-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.modules .module-card {
    flex: 1 1 280px;
    max-width: 400px;
    padding: 1.5rem 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e4ea;
    position: relative;
}

.modules .module-card::before {
    display: none;
}

.modules .module-card:hover {
    box-shadow: 0 5px 15px rgba(59, 125, 221, 0.08);
}

.modules .module-card i {
    font-size: 2.5rem;
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

.modules .module-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.modules .module-features {
    text-align: left;
}

.modules .module-features li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Quote Form Section */
.quote-form {
    padding: 4rem 0;
    background: #f8f9fa;
}

.quote-form .quote-container {
    max-width: 50%;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quote-form .quote-title {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-form .quote-title h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quote-form .quote-title p {
    color: #666;
}

.quote-form .quote-form-container {
    display: grid;
    gap: 1.5rem;
}

.quote-form .quote-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form .form-group label {
    font-weight: 500;
    color: var(--dark-color);
}

.quote-form .form-group input,
.quote-form .form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quote-form .form-group input:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(168, 13, 54, 0.1);
}

.quote-form .submit-btn {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-form .submit-btn:hover {
    background: #8a0b2d;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 1rem;
    position: relative;
}

footer .footer-content {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

footer .footer-logo {
    flex-shrink: 0;
}

footer .footer-logo img {
    width: 200px;
    height: 100%;
    object-fit: contain;
}

footer .footer-info {
    text-align: center;
}

footer .footer-info .copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

footer .footer-info .company {
    font-size: 0.9rem;
    opacity: 0.9;
}

footer .footer-contact {
    display: flex;
    gap: 1rem;
}

footer .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

footer .footer-link:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--dark-color);
}

/* Notification */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-container .notification {
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.notification-container .notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.notification-container .notification.success {
    background: #51a351;
}

.notification-container .notification.success::before {
    background: #548f54;
}

.notification-container .notification.error {
    background: #bd362f;
}

.notification-container .notification.error::before {
    background: #af423d;
}

.notification-container .notification i {
    font-size: 20px;
}

.notification-container .notification .close-btn {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-container .notification .close-btn:hover {
    opacity: 1;
}

.notification-container .notification.hide {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .quote-form .quote-container {
		max-width: 75%;
    }
}

@media (max-width: 768px) {
    nav{
        padding: .25rem 0%;
    }
	.nav-container,
	.showcase .showcase-container,
	.modules .modules-container,
	footer .footer-content {
		max-width: 85%;
	}
    .nav-container .logo img{
        width: 150px;
    }
    .nav-container .nav-links {
        margin: .5rem 0;
        justify-content: center;
    }
    .nav-container .nav-links .whatsapp,
    .nav-container .nav-links .phone {
        width: 35px;
        height: 35px;
    }
    .nav-container .nav-links .whatsapp i,
    .nav-container .nav-links .phone i {
        font-size: 1rem;
    }
    .showcase{
        padding: 5rem 0 1rem;
    }
    .showcase .slider-nav{
        bottom: 10px;
    }
    .showcase .slider-arrow {
        width: 30px;
        height: 30px;
    }
    .showcase .slider-arrow i {
        font-size: 1rem;
    }
    .showcase .slide-content h3 {
        font-size: 1.5rem;
    }
    .showcase .slide-content p {
        font-size: 1rem;
    }
    .modules {
        padding-bottom: 2.5rem;
    }
    .modules .modules-title h2 {
        font-size: 2rem;
    }
    .quote-form {
        padding: 2rem 0;
    }
    .quote-form .quote-container {
		max-width: 85%;
        padding: 1.5rem;
    }
    .quote-form .quote-title h2 {
        font-size: 1.5rem;
    }
    .quote-form .quote-form-container .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    footer .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    footer .footer-contact {
        justify-content: center;
    }
    footer .footer-link {
        width: 40px;
        height: 40px;
    }
    .notification-container {
        left: 20px;
        right: 20px;
    }
    .notification-container .notification {
        min-width: auto;
        width: 100%;
    }
}