@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    font-family: "Ubuntu", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #ffffff; /* Azul oscuro */
    color: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo {
        width: 25%;
        max-width: 300px;
        height: auto;
        display: block;
    }
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #1abc9c; /* Verde turquesa */
}

/* Botones */
.btn {
    display: inline-block;
    background-color: #1abc9c; /* Verde turquesa */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #16a085; /* Verde más oscuro */
}

/* Secciones */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(even) {
    background-color: #f4f4f4; /* Gris claro */
}

section h2, section h3 {
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Hero Section */
.hero {
    background-color: #34495e; /* Azul grisáceo */
    color: #fff;
    padding: 100px 0;
}

.hero h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Services Section */
.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services .service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.services .service-item:hover {
    transform: translateY(-5px);
}

.services .service-item h4 {
    color: #1abc9c;
    margin-top: 0;
    font-size: 1.4em;
}

/* Contact Section */
.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact .form-group {
    margin-bottom: 20px;
}

.contact .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.contact .form-group input[type="text"],
.contact .form-group input[type="email"],
.contact .form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact .form-group textarea {
    resize: vertical;
}

.contact .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

.circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.circle-instagram {
    background-color: #e1306c;
}

.circle-instagram:hover {
    background-color: #c13584;
}

.circle-facebook {
    background-color: #1877F2;
}

.circle-facebook:hover {
    background-color: #165EBD;
}


/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;

        .logo {
            width: 90%;
            margin: 0 auto;
        }
    }

    header nav ul {
        margin-top: 15px;
        justify-content: center;
    }

    header nav ul li {
        margin: 0 10px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .services .service-grid {
        grid-template-columns: 1fr;
    }
}