* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003B71;
    --secondary-blue: #0066cc;
    --light-blue: #e6f0ff;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #1A2A3A;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: #333;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    padding: 6rem 5% 2rem;
    background: linear-gradient(to right, var(--white) 60%, var(--light-blue) 40%);
    position: relative;
}

.contato form {
    background: linear-gradient(145deg, var(--light-blue), #ffffff);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

input, textarea, select {
    padding: 1.2rem;
    border: 2px solid rgba(0,59,113,0.1);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

input:hover, textarea:hover, select:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(0,102,204,0.15);
}

button[type="submit"] {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,59,113,0.2);
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,59,113,0.3);
}

header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-blue);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    padding: 6rem 5% 2rem;
    background: linear-gradient(to right, var(--white) 60%, var(--light-blue) 40%);
    position: relative;
}

.hero-content {
    padding-right: 3rem;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--secondary-blue);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 1rem;
}

.hero-images img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-images img:hover {
    transform: scale(1.02);
}

.sobre {
    padding: 8rem 5%;
    background: var(--white);
    text-align: center;
}

.sobre h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.sobre h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
}

.sobre p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.servicos {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 8rem 5%;
}

.servicos h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contato {
    padding: 8rem 5%;
    background: var(--white);
}

.contato h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.contato form {
    background: linear-gradient(145deg, #f0f7ff, #ffffff);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

input, textarea, select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0,59,113,0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 1.2rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

input:hover, textarea:hover, select:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,102,204,0.15);
    outline: none;
    transform: translateY(-2px);
}

.radio-group {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 0.8rem;
}

.radio-group label {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
}

button[type="submit"] {
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1rem 0;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked {
    background: var(--white);
    border: 2px solid var(--secondary-blue);
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary-blue);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-group label {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
}

button[type="submit"] {
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    }
    
    .radio-group label {
    margin-left: 0.8rem;
    font-size: 1rem;
    }
    
    .form-group {
    margin-bottom: 1rem;
    }

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .sobre h2, .servicos h2, .contato h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button, button[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 5rem 5% 2rem;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-images {
        order: 1;
        width: 100%;
        padding: 0;
        max-width: 800px;
        margin: 2rem auto;
    }

    .hero-images img {
        width: 100%;
        max-width: 800px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .hero-images {
        width: 100%;
        padding: 0 1rem;
    }

    .hero-images img {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-images {
        padding: 0 0.5rem;
    }
}
.date-inputs {
    display: flex;
    gap: 1rem;
}

.date-inputs input {
    width: 33%;
    text-align: center;
    padding: 0.8rem;
}

@media (max-width: 480px) {
    .date-inputs {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .date-inputs input {
        width: 100%;
        padding: 1rem;
    }
}
.date-inputs input::-webkit-inner-spin-button,
.date-inputs input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.date-inputs input[type=number] {
    -moz-appearance: textfield;
}

input[type="date"] {
    -webkit-appearance: none;
    color: var(--text-dark);
    font-family: inherit;
    text-align: left;
    width: 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

@media (max-width: 768px) {
    input[type="date"] {
        min-height: 3.5rem;
    }
}
