* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0d1b2a;
    color: white;
}

/* HEADER */
header {
    text-align: center;
    padding: 30px;
    background: #1b263b;
    border-bottom: 3px solid #ffc300;
}

header h1 {
    font-size: 32px;
    color: #ffc300;
}

.tagline {
    font-size: 14px;
    margin-top: 8px;
}

/* SECTION TITLE */
h2 {
    text-align: center;
    margin: 25px 0;
    color: #ffc300;
}

/* GLASS CARDS */
.glass-section {
    padding: 20px;
}

.glass-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 90%;
    margin: auto;
}

.glass-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.glass-card img {
    width: 100%;
    border-radius: 12px;
}

/* SLIDER */
.slider-section {
    width: 100%;
    padding: 20px 0;
}

.slider {
    width: 90%;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #ffc300;
}

.slides {
    display: flex;
    width: 200%;
    animation: slide 6s infinite alternate;
}

.slide {
    width: 100%;
}

@keyframes slide {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.slide-note {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #ffc300;
}

/* CONTACT FORM */
.contact {
    text-align: center;
    padding: 30px 0;
}

.contact-form {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

.contact-form button {
    background: #ffc300;
    color: black;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.whatsapp a {
    color: #00ff99;
    text-decoration: none;
    font-weight: bold;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #1b263b;
    border-top: 2px solid #ffc300;
    margin-top: 20px;
}
