/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F5F5F5;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #4A90A4;
}

a {
    text-decoration: none;
    color: #4A90A4;
}

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

.btn {
    display: inline-block;
    background-color: #D4AF37;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #C29B2C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Header */
header {
    background-color: #4A90A4;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: bold;
    color: white;
}

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

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

header nav ul li a {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 3px;
}

header nav ul li a:hover {
    color: #D4AF37;
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/perfil2.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-credentials {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #7FB069;
}

.about-credentials h3 {
    color: #7FB069;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.about-credentials ul {
    list-style: none;
}

.about-credentials ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-credentials ul li i {
    color: #7FB069;
    margin-right: 10px;
    width: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    background-color: #7FB069;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5em;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #4A90A4;
}

.service-item p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    text-align: left;
}

.service-benefits li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.service-benefits li:before {
    content: "✓";
    color: #7FB069;
    font-weight: bold;
    margin-right: 10px;
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background-color: white;
}

.appointment h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.appointment-intro {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666;
}

.appointment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.appointment-option {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.appointment-option:hover {
    border-color: #7FB069;
    transform: translateY(-3px);
}

.appointment-icon {
    background-color: #7FB069;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2em;
}

.appointment-option h3 {
    margin-bottom: 15px;
    color: #4A90A4;
}

.appointment-option p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1DA851;
}

.calendar-btn {
    background-color: #4285F4;
}

.calendar-btn:hover {
    background-color: #3367D6;
}

.appointment-info {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.appointment-info h3 {
    margin-bottom: 30px;
    color: #4A90A4;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
}

.info-item i {
    color: #7FB069;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 20px;
    color: #4A90A4;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
}

.contact-item i {
    color: #7FB069;
    margin-right: 15px;
    width: 20px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7FB069;
}

/* Footer */
footer {
    background-color: #333333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-section i {
    margin-right: 8px;
    color: #7FB069;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.8em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background-color: #1DA851;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


