:root {
    --primary: #FF8A65;
    --secondary: #64B5F6;
    --accent: #FFEB3B;
    --success: #81C784;
    --light: #FAFAFA;
    --dark: #455A64;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background-color: var(--primary);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--secondary);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.header h1 {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E0E0E0;
    border-radius: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 18px;
    height: 18px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #FF7043;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info {
    background-color: var(--secondary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info-list {
    list-style: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    min-width: 24px;
    text-align: center;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.response-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    display: none;
}

.response-message.success {
    background-color: var(--success);
    color: white;
    display: block;
}

.response-message.error {
    background-color: #e57373;
    color: white;
    display: block;
}

.decorative-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background-color: var(--secondary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@media (max-width: 767px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
}