/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #eef6f7;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #6bb6c9, #184a6d);
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #b5e0f2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
}

h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-button {
    background-color: #2a6478;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #184a6d;
}

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

section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #184a6d;
    margin-bottom: 20px;
}

.service-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 6px 18px 6px rgb(33 81 141 / 10%);
    width: 30%;
    min-width: 280px;
    margin: 15px;
}

.service h3 {
    font-size: 1.6rem;
    color: #2a6478;
}

.service p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Form */
.contact form {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    font-size: 1.1rem;
    color: #184a6d;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

button.cta-button {
    width: 100%;
}

/* Footer */
footer {
    background-color: #184a6d;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    position: relative;
}

/* LinkedIn Button */
.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
}

.social-links img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.social-links img:hover {
    transform: scale(1.1);
}

footer .social-links {
    position: absolute;
    bottom: 10px;
    right: 20px;
}
